org.apache.batik.util
public static class DoublyLinkedList.Node extends Object
| Method Summary | |
|---|---|
| DoublyLinkedList.Node | getNext() |
| DoublyLinkedList.Node | getPrev() |
| protected void | insertBefore(DoublyLinkedList.Node nde)
Link this node in, infront of nde (unlinks it's self
before hand if needed). |
| protected void | setNext(DoublyLinkedList.Node newNext) |
| protected void | setPrev(DoublyLinkedList.Node newPrev) |
| protected void | unlink()
Unlink this node from it's current list... |
Parameters: nde the node to link in before.