getElements()

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 (int i=0, i<elements.length; i++) 
    {
    trace(1, elements[i].toString());
    }
 

Copyright IBM Corp. 1997, 2003