OSID Logo
OSID Specifications
repository package
Version 3.0.0
Release Candidate Preview
Interfaceosid.repository.AssetContentList
Implementsosid.OsidList
Description

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

                     
                     
                     while (acl.hasNext()) {
                          AssetContent content = acl.getNextAssetContent();
                     }
                     
                                 
                     
                
or
                     
                     
                     while (acl.hasNext()) {
                          AssetContent[] contents = acl.getNextAssetContents(acl.available());
                     }
                     
                                 
                     
                
MethodgetNextAssetContent
Description

Gets the next AssetContent in this list.

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

Gets the next set of AssetContents in this list which must be less than or equal to the return from available().

Parameterscardinalnthe number of AssetContent elements requested which must be less than or equal to available()
Returnosid.repository.AssetContent[]an array of AssetContent 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.