|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface DLinkedList.Node
This is the interface you have to implement if you want to put objects in this linked list.
Method Summary | |
---|---|
DLinkedList.Node |
copyNode()
This should return a copy of a node, without next and prev set. |
DLinkedList.Node |
next()
This should return the next node in the list, or null if there is none. |
DLinkedList.Node |
prev()
This should return the previous node in the list, or null if there is none. |
void |
setNext(DLinkedList.Node x)
This should set the next node in the list to a given linkable object. |
void |
setPrev(DLinkedList.Node x)
This should set the previous node in the list to a given linkable object. |
Method Detail |
---|
DLinkedList.Node next()
DLinkedList.Node prev()
void setNext(DLinkedList.Node x)
void setPrev(DLinkedList.Node x)
DLinkedList.Node copyNode()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |