Package | Description |
---|---|
org.apache.commons.collections |
This package contains the interfaces and utilities shared across all the subpackages of this component.
|
Modifier and Type | Field and 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 |
Modifier and Type | Method and Description |
---|---|
protected CursorableLinkedList.Listable |
CursorableLinkedList.getListableAt(int index)
Deprecated.
Returns the
CursorableLinkedList.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 element
|
protected 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() |
Modifier and Type | Method and 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 element
|
protected 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
|
protected 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 given
CursorableLinkedList.Listable
from my list. |
protected void |
CursorableSubList.removeListable(CursorableLinkedList.Listable elt)
Deprecated.
Removes the given
CursorableLinkedList.Listable from my list. |
(package private) void |
CursorableLinkedList.Listable.setNext(CursorableLinkedList.Listable next) |
(package private) void |
CursorableLinkedList.Listable.setPrev(CursorableLinkedList.Listable prev) |
Constructor and Description |
---|
Listable(CursorableLinkedList.Listable prev,
CursorableLinkedList.Listable next,
java.lang.Object val) |