| Interface | osid.tracking.FrontOfficeNodeList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Description |
Like all
while (fonl.hasNext()) {
FrontOfficeNode node = fonl.getNextFrontOfficeNode();
}
or
while (fonl.hasNext()) {
FrontOfficeNode[] nodes = fonl.getNextFrontOfficeNodes(fonl.available());
}
| ||
| Method | getNextFrontOfficeNode | ||
| Description |
Gets the next | ||
| Return | osid.tracking.FrontOfficeNode | the next FrontOfficeNode in this list. The hasNext()
method should be used to test that a next FrontOfficeNode
is available before calling this method. | |
| Errors | ILLEGAL_STATE | no more elements available in this list | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | getNextFrontOfficeNodes | ||
| Description |
Gets the next set of | ||
| Parameters | cardinal | n | the number of FrontOfficeNode elements requested which must
be less than or equal to available() |
| Return | osid.tracking.FrontOfficeNode[] | an array of FrontOfficeNode elements. The
length of the array is less than or equal to the number specified. | |
| Errors | ILLEGAL_STATE | no more elements available in this list | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |