Uses of Class
org.apache.commons.collections.CursorableLinkedList.Listable
-
Packages that use CursorableLinkedList.Listable Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component. -
-
Uses of CursorableLinkedList.Listable in org.apache.commons.collections
Fields in org.apache.commons.collections declared as CursorableLinkedList.Listable Modifier and Type Field Description (package private) CursorableLinkedList.Listable
CursorableLinkedList.ListIter. _cur
protected CursorableLinkedList.Listable
CursorableLinkedList. _head
Deprecated.A sentry node.(package private) CursorableLinkedList.Listable
CursorableLinkedList.ListIter. _lastReturned
private CursorableLinkedList.Listable
CursorableLinkedList.Listable. _next
protected CursorableLinkedList.Listable
CursorableSubList. _post
Deprecated.The element in my underlying list following the last element in my list.protected CursorableLinkedList.Listable
CursorableSubList. _pre
Deprecated.The element in my underlying list preceding the first element in my list.private CursorableLinkedList.Listable
CursorableLinkedList.Listable. _prev
Methods in org.apache.commons.collections that return CursorableLinkedList.Listable Modifier and Type Method Description protected CursorableLinkedList.Listable
CursorableLinkedList. getListableAt(int index)
Deprecated.Returns theCursorableLinkedList.Listable
at the specified index.protected CursorableLinkedList.Listable
CursorableLinkedList. insertListable(CursorableLinkedList.Listable before, CursorableLinkedList.Listable after, java.lang.Object value)
Deprecated.Inserts a new value into my list, after the specified before element, and before the specified after elementprotected CursorableLinkedList.Listable
CursorableSubList. insertListable(CursorableLinkedList.Listable before, CursorableLinkedList.Listable after, java.lang.Object value)
Deprecated.Inserts a new value into my list, after the specified before element, and before the specified after element(package private) CursorableLinkedList.Listable
CursorableLinkedList.Listable. next()
(package private) CursorableLinkedList.Listable
CursorableLinkedList.Listable. prev()
Methods in org.apache.commons.collections with parameters of type CursorableLinkedList.Listable Modifier and Type Method Description protected void
CursorableLinkedList. broadcastListableChanged(CursorableLinkedList.Listable elt)
Deprecated.Informs all of my registered cursors that the specified element was changed.protected void
CursorableLinkedList. broadcastListableInserted(CursorableLinkedList.Listable elt)
Deprecated.Informs all of my registered cursors that the specified element was just added to my list.protected void
CursorableLinkedList. broadcastListableRemoved(CursorableLinkedList.Listable elt)
Deprecated.Informs all of my registered cursors that the specified element was just removed from my list.protected CursorableLinkedList.Listable
CursorableLinkedList. insertListable(CursorableLinkedList.Listable before, CursorableLinkedList.Listable after, java.lang.Object value)
Deprecated.Inserts a new value into my list, after the specified before element, and before the specified after elementprotected CursorableLinkedList.Listable
CursorableSubList. insertListable(CursorableLinkedList.Listable before, CursorableLinkedList.Listable after, java.lang.Object value)
Deprecated.Inserts a new value into my list, after the specified before element, and before the specified after elementprotected void
CursorableLinkedList.Cursor. listableChanged(CursorableLinkedList.Listable elt)
protected void
CursorableLinkedList.Cursor. listableInserted(CursorableLinkedList.Listable elt)
protected void
CursorableLinkedList.Cursor. listableRemoved(CursorableLinkedList.Listable elt)
protected void
CursorableLinkedList. removeListable(CursorableLinkedList.Listable elt)
Deprecated.Removes the givenCursorableLinkedList.Listable
from my list.protected void
CursorableSubList. removeListable(CursorableLinkedList.Listable elt)
Deprecated.Removes the givenCursorableLinkedList.Listable
from my list.(package private) void
CursorableLinkedList.Listable. setNext(CursorableLinkedList.Listable next)
(package private) void
CursorableLinkedList.Listable. setPrev(CursorableLinkedList.Listable prev)
Constructors in org.apache.commons.collections with parameters of type CursorableLinkedList.Listable Constructor Description Listable(CursorableLinkedList.Listable prev, CursorableLinkedList.Listable next, java.lang.Object val)
-