OSID Logo
OSID Specifications
assessment package
Version 3.0.0
Release Candidate Preview
Interfaceosid.assessment.AssessmentSectionList
Implementsosid.OsidList
Description

Like all OsidLists, AssessmentSectionList provides a means for accessing AssessmentSection elements sequentially either one at a time or many at a time. Examples:

                     
                     
                     while (asl.hasNext()) {
                          AssessmentSection section = asl.getNextAssessmentSection();
                     
                                 
                     
                
or
                     
                     
                     while (asl.hasNext()) {
                          AssessmentSection[] sections = asl.hetNextAssessmentSections(asl.available());
                     }
                     
                                 
                     
                
MethodgetNextAssessmentSection
Description

Gets the next AssessmentSection in this list.

Returnosid.assessment.AssessmentSectionthe next AssessmentSection in this list. The hasNext() method should be used to test that a next AssessmentSection is available before calling this method.
ErrorsILLEGAL_STATEno more elements available in this list
OPERATION_FAILEDunable to complete request
CompliancemandatoryThis method must be implemented.
MethodgetNextAssessmentSections
Description

Gets the next set of AssessmentSection elements in this list which must be less than or equal to the number returned from available().

Parameterscardinalnthe number of AssessmentSection elements requested which should be less than or equal to available()
Returnosid.assessment.AssessmentSection[]an array of AssessmentSection elements. The length of the array is less than or equal to the number specified.
ErrorsILLEGAL_STATEno more elements available in this list
OPERATION_FAILEDunable to complete request
CompliancemandatoryThis method must be implemented.