Class LRUCache.LRUNode
- java.lang.Object
-
- org.apache.batik.util.DoublyLinkedList.Node
-
- org.apache.batik.ext.awt.image.rendered.LRUCache.LRUNode
-
- Enclosing class:
- LRUCache
public class LRUCache.LRUNode extends DoublyLinkedList.Node
Interface for nodes in the LRU cache, basicly nodes in a doubly linked list.
-
-
Constructor Summary
Constructors Constructor Description LRUNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LRUCache.LRUObj
getObj()
protected void
setObj(LRUCache.LRUObj newObj)
-
Methods inherited from class org.apache.batik.util.DoublyLinkedList.Node
getNext, getPrev, insertBefore, setNext, setPrev, unlink
-
-
-
-
Method Detail
-
getObj
public LRUCache.LRUObj getObj()
-
setObj
protected void setObj(LRUCache.LRUObj newObj)
-
-