Class Node

java.lang.Object
   |
   +----Node

class Node
extends Object
A generic singly linked list node.

Version:
1.00
Author:
Bill Lorton

Constructor Index

 o Node()
The Node constructor.

Method Index

 o next()
Gets the next node from this node.
 o setNext(Node)
Sets the next node of this node.

Constructors

 o Node
 public Node()
The Node constructor.

Methods

 o setNext
 public void setNext(Node n)
Sets the next node of this node.

Parameters:
n - the node to set as the next node
 o next
 public Node next()
Gets the next node from this node.

Returns:
the next node