mirror of
https://github.com/Rushilwiz/APCS.git
synced 2025-04-05 13:00:20 -04:00
28 lines
439 B
Java
28 lines
439 B
Java
//Thomas Bettge, TJHSST, 10-20-2006
|
|
public class ListNode
|
|
{
|
|
private Object value;
|
|
private ListNode next;
|
|
public ListNode(Object v, ListNode n)
|
|
{
|
|
value=v;
|
|
next=n;
|
|
}
|
|
public Object getValue()
|
|
{
|
|
return value;
|
|
}
|
|
public ListNode getNext()
|
|
{
|
|
return next;
|
|
}
|
|
public void setValue(Object newv)
|
|
{
|
|
value=newv;
|
|
}
|
|
public void setNext(ListNode newn)
|
|
{
|
|
next=newn;
|
|
}
|
|
|
|
} |