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