APCS/04 ListNode/04 DLL/DLNode.java
Rushil Umaretiya 3fc3554899 initial commit
2020-12-04 22:00:49 -05:00

45 lines
700 B
Java

//////////////////////////////////////
//Keith Ainsworth, 11/13/2006
class DLNode
{
private Object value;
private DLNode prev;
private DLNode next;
public DLNode(Object arg, DLNode p, DLNode n)
{
value=arg;
prev=p;
next=n;
}
public DLNode()
{
value=null;
next=this;
prev=this;
}
public void setValue(Object arg)
{
value=arg;
}
public void setNext(DLNode arg)
{
next=arg;
}
public void setPrev(DLNode arg)
{
prev=arg;
}
public DLNode getNext()
{
return next;
}
public DLNode getPrev()
{
return prev;
}
public Object getValue()
{
return value;
}
}