ap
Class ListNode

java.lang.Object
  extended byap.ListNode

public class ListNode
extends java.lang.Object


Constructor Summary
ListNode(java.lang.Object initValue)
           
ListNode(java.lang.Object initValue, ListNode initNext)
           
 
Method Summary
 ListNode getNext()
           
 java.lang.Object getValue()
           
 void setNext(ListNode theNewNext)
           
 void setValue(java.lang.Object theNewValue)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListNode

public ListNode(java.lang.Object initValue)

ListNode

public ListNode(java.lang.Object initValue,
                ListNode initNext)
Method Detail

getValue

public java.lang.Object getValue()

getNext

public ListNode getNext()

setValue

public void setValue(java.lang.Object theNewValue)

setNext

public void setNext(ListNode theNewNext)