Retrieve the contents of this business object array.
Syntax
BusObj[] getElements()
Exceptions
CollaborationException--The getElements() method can set the following exception type for this exception:
Examples
The following example prints the elements of the items array.
BusObj[] elements = items.getElements(); for (i=0, i<size; i++) { trace(1, elements[i].toString()); }