OSID Logo
OSID Specifications
logging package
Version 3.1.0
Interfaceosid.logging.LogList
Implementsosid.OsidList
Used Byosid.logging.LogEntryLogSession
osid.logging.LogHierarchySession
osid.logging.LogLookupSession
osid.logging.LogQuerySession
osid.logging.LogSearchResults
Description

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

while (ll.hasNext()) {
     Log log = ll.getNextLog();
}
                
or
while (ll.hasNext()) {
     Log[] logs = ll.getNextLogs(ll.available());
}
                
MethodgetNextLog
Description

Gets the next Log in this list.

Returnosid.logging.Log the next Log in this list. The hasNext() method should be used to test that a next Log 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.
MethodgetNextLogs
Description

Gets the next set of Log elements in this list. The specified amount must be less than or equal to the return from available().

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