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