| Interface | osid.installation.batch.DepotBatchFormList | ||
|---|---|---|---|
| Implements | osid.OsidList | ||
| Description |
Like all
while (dbfl.hasNext()) {
DepotBatchForm form = dbfl.getNextDepotBatchForm();
}
or
while (dbfl.hasNext()) {
DepotBatchForm[] forms = dbfl.getNextDepotBatchForms(dbfl.available());
}
| ||
| Method | getNextDepotBatchForm | ||
| Description |
Gets the next | ||
| Return | osid.installation.batch.DepotBatchForm | the next DepotBatchForm in this list. The hasNext()
method should be used to test that a next DepotBatchForm
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 | getNextDepotBatchForms | ||
| Description |
Gets the next set of | ||
| Parameters | cardinal | n | the number of DepotBatchForm elements requested which must
be less than or equal to available() |
| Return | osid.installation.batch.DepotBatchForm[] | an array of DepotBatchForm 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. | |