| java.lang.Object org.jpox.sco.SCOListIterator
SCOListIterator | public class SCOListIterator implements ListIterator(Code) | | An iterator for a SCO List object. Takes in the delegate and the backing
store, and provides iteration through the objects.
Only accessible from package to provide protection.
version: $Revision: 1.8 $ |
SCOListIterator | public SCOListIterator(List sco, StateManager sm, List theDelegate, ListStore theStore, boolean useDelegate, int startIndex)(Code) | | Constructor taking the delegate, backing store and any start index.
Parameters: sco - Owner SCO Parameters: sm - State Manager of SCO List to iterate Parameters: theDelegate - The delegate list Parameters: theStore - The backing store (connected to the DB) Parameters: useDelegate - whether to use a delegate Parameters: startIndex - The start index position |
hasNext | public boolean hasNext()(Code) | | |
hasPrevious | public boolean hasPrevious()(Code) | | |
nextIndex | public int nextIndex()(Code) | | |
previousIndex | public int previousIndex()(Code) | | |
remove | public void remove()(Code) | | |
|
|