OSID Logo
OSID Specifications
repository package
Version 3.1.0
Interfaceosid.repository.AssetList
Implementsosid.OsidList
Used Byosid.Sourceable
osid.course.syllabus.Docet
osid.learning.Activity
osid.recipe.Direction
osid.recipe.Recipe
osid.repository.AssetCompositionSession
osid.repository.AssetLookupSession
osid.repository.AssetQuerySession
osid.repository.AssetRepositorySession
osid.repository.AssetSearchResults
show 1 more…
osid.repository.AssetSpatialSession
Description

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

while (al.hasNext()) {
     Asset asset = al.getNextAsset();
}
                
or
while (al.hasNext()) {
     Asset[] assets = al.getNextAssets(al.available());
}
                
MethodgetNextAsset
Description

Gets the next Asset in this list.

Returnosid.repository.Asset the next Asset in this list. The hasNext() method should be used to test that a next Asset is available before calling this method.
ErrorsILLEGAL_STATE no more elements available in this list
OPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetNextAssets
Description

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

Parameterscardinaln the number of Asset elements requested which must be less than or equal to available()
Returnosid.repository.Asset[] an array of Asset elements. The length of the array is less than or equal to the number specified.
ErrorsILLEGAL_STATE no more elements available in this list
OPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.