Class Node<E>

java.lang.Object
  extended by Node<E>

public class Node<E>
extends java.lang.Object


Constructor Summary
Node(E data, Node<E> next)
           
 
Method Summary
 E getData()
           
 Node<E> getNext()
           
 void setNext(Node<E> next)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Node

public Node(E data,
            Node<E> next)
Method Detail

getData

public E getData()

getNext

public Node<E> getNext()

setNext

public void setNext(Node<E> next)