Uses of Class
ProGAL.dataStructures.DLCyclicList.DLNode

Packages that use DLCyclicList.DLNode
ProGAL.dataStructures   
 

Uses of DLCyclicList.DLNode in ProGAL.dataStructures
 

Methods in ProGAL.dataStructures that return DLCyclicList.DLNode
 DLCyclicList.DLNode<T> DLCyclicList.findNode(java.lang.Object obj)
          Finds the element containing given object.
 DLCyclicList.DLNode<T> DLCyclicList.getEntry()
           
 DLCyclicList.DLNode<T> DLCyclicList.getFirst()
           
 DLCyclicList.DLNode<T> DLCyclicList.DLNode.getNext()
          Return next node of the doubly linked list
 DLCyclicList.DLNode<T> DLCyclicList.DLNode.getPrev()
          Returns previous node of the doubly linked list
 

Methods in ProGAL.dataStructures with parameters of type DLCyclicList.DLNode
 T DLCyclicList.delete(DLCyclicList.DLNode<T> nd)
          Deletes a node from the list and returns its object.
 void DLCyclicList.pushAfter(T obj, DLCyclicList.DLNode<T> n)
          Adds an object after the specified node in the list.
 void DLCyclicList.pushBefore(T obj, DLCyclicList.DLNode<T> n)
          Adds an object before the specified node in the list.
 void DLCyclicList.setEntry(DLCyclicList.DLNode<T> n)
           
 

Constructors in ProGAL.dataStructures with parameters of type DLCyclicList.DLNode
DLCyclicList.DLNode(T obj, DLCyclicList.DLNode<T> prev, DLCyclicList.DLNode<T> next)
           
DLCyclicList.DLNode(T obj, DLCyclicList.DLNode<T> prev, DLCyclicList.DLNode<T> next)