public class DListNode<X>
extends java.lang.Object
| Constructor and Description |
|---|
DListNode(X element,
DListNode<X> next,
DListNode<X> previous) |
| Modifier and Type | Method and Description |
|---|---|
X |
getElement() |
DListNode<X> |
getNext() |
DListNode<X> |
getPrev() |
void |
setElement(X element) |
void |
setNext(DListNode<X> next) |
void |
setPrev(DListNode<X> prev) |