Uses of Class
org.apache.batik.util.DoublyLinkedList.Node
-
Packages that use DoublyLinkedList.Node Package Description org.apache.batik.ext.awt.image.rendered org.apache.batik.util Provides some useful classes. -
-
Uses of DoublyLinkedList.Node in org.apache.batik.ext.awt.image.rendered
Subclasses of DoublyLinkedList.Node in org.apache.batik.ext.awt.image.rendered Modifier and Type Class Description static classLRUCache.LRUNodeInterface for nodes in the LRU cache, basicly nodes in a doubly linked list. -
Uses of DoublyLinkedList.Node in org.apache.batik.util
Subclasses of DoublyLinkedList.Node in org.apache.batik.util Modifier and Type Class Description protected static classRunnableQueue.LinkTo store a Runnable.protected static classRunnableQueue.LockableLinkTo store a Runnable with an object waiting for him to be executed.Fields in org.apache.batik.util declared as DoublyLinkedList.Node Modifier and Type Field Description private DoublyLinkedList.NodeDoublyLinkedList. headprivate DoublyLinkedList.NodeDoublyLinkedList.Node. nextprivate DoublyLinkedList.NodeDoublyLinkedList.Node. prevMethods in org.apache.batik.util that return DoublyLinkedList.Node Modifier and Type Method Description DoublyLinkedList.NodeDoublyLinkedList. getHead()Get the current head elementDoublyLinkedList.NodeDoublyLinkedList.Node. getNext()DoublyLinkedList.NodeDoublyLinkedList.Node. getPrev()DoublyLinkedList.NodeDoublyLinkedList. getTail()Get the current tail elementDoublyLinkedList.NodeDoublyLinkedList. pop()Removes 'head' from list and returns it.DoublyLinkedList.NodeDoublyLinkedList. unpush()Removes 'tail' from list and returns it.Methods in org.apache.batik.util with parameters of type DoublyLinkedList.Node Modifier and Type Method Description voidDoublyLinkedList. add(int index, DoublyLinkedList.Node nde)voidDoublyLinkedList. add(DoublyLinkedList.Node nde)Addsndeto the head of the list.protected voidDoublyLinkedList.Node. insertBefore(DoublyLinkedList.Node nde)Link this node in, infront of nde (unlinks it's self before hand if needed).voidDoublyLinkedList. push(DoublyLinkedList.Node nde)Addsndeto tail of listvoidDoublyLinkedList. remove(DoublyLinkedList.Node nde)Removes nde from the list it is part of (should be this one, otherwise results are undefined).protected voidDoublyLinkedList.Node. setNext(DoublyLinkedList.Node newNext)protected voidDoublyLinkedList.Node. setPrev(DoublyLinkedList.Node newPrev)voidDoublyLinkedList. touch(DoublyLinkedList.Node nde)Movesndeto the head of the list (equivilent to remove(nde); add(nde); but faster.voidDoublyLinkedList. unpop(DoublyLinkedList.Node nde)Addsndeto head of list
-