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

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;
}
}