|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator<E> org.apache.commons.collections.list.CursorableLinkedList.Cursor<E>
public static class CursorableLinkedList.Cursor<E>
An extended ListIterator
that allows concurrent changes to
the underlying list.
Field Summary |
---|
Fields inherited from class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator |
---|
current, expectedModCount, next, nextIndex, parent |
Constructor Summary | |
---|---|
protected |
CursorableLinkedList.Cursor(CursorableLinkedList<E> parent,
int index)
Constructs a new cursor. |
Method Summary | |
---|---|
void |
add(E obj)
Adds an object to the list. |
protected void |
checkModCount()
Override superclass modCount check, and replace it with our valid flag. |
void |
close()
Mark this cursor as no longer being needed. |
int |
nextIndex()
Gets the index of the next element to be returned. |
protected void |
nodeChanged(AbstractLinkedList.Node<E> node)
Handle event from the list when a node has changed. |
protected void |
nodeInserted(AbstractLinkedList.Node<E> node)
Handle event from the list when a node has been added. |
protected void |
nodeRemoved(AbstractLinkedList.Node<E> node)
Handle event from the list when a node has been removed. |
Methods inherited from class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator |
---|
getLastNodeReturned, hasNext, hasPrevious, next, previous, previousIndex, remove, set |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected CursorableLinkedList.Cursor(CursorableLinkedList<E> parent, int index)
index
- the index to start fromMethod Detail |
---|
public void add(E obj)
add
in interface ListIterator<E>
add
in class AbstractLinkedList.LinkedListIterator<E>
obj
- the object to addpublic int nextIndex()
nextIndex
in interface ListIterator<E>
nextIndex
in class AbstractLinkedList.LinkedListIterator<E>
protected void nodeChanged(AbstractLinkedList.Node<E> node)
node
- the node that changedprotected void nodeRemoved(AbstractLinkedList.Node<E> node)
node
- the node that was removedprotected void nodeInserted(AbstractLinkedList.Node<E> node)
node
- the node that was addedprotected void checkModCount()
checkModCount
in class AbstractLinkedList.LinkedListIterator<E>
public void close()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |