Package org.apache.batik.util
Class DoublyLinkedList.Node
java.lang.Object
org.apache.batik.util.DoublyLinkedList.Node
- Direct Known Subclasses:
LRUCache.LRUNode
,RunnableQueue.Link
- Enclosing class:
- DoublyLinkedList
Basic doubly linked list node interface.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal DoublyLinkedList.Node
getNext()
final DoublyLinkedList.Node
getPrev()
protected final void
Link this node in, infront of nde (unlinks it's self before hand if needed).protected final void
setNext
(DoublyLinkedList.Node newNext) protected final void
setPrev
(DoublyLinkedList.Node newPrev) protected final void
unlink()
Unlink this node from it's current list...
-
Field Details
-
next
-
prev
-
-
Constructor Details
-
Node
public Node()
-
-
Method Details
-
getNext
-
getPrev
-
setNext
-
setPrev
-
unlink
protected final void unlink()Unlink this node from it's current list... -
insertBefore
Link this node in, infront of nde (unlinks it's self before hand if needed).- Parameters:
nde
- the node to link in before.
-