/**
 * Nodes for a variety of structures.
 *
 * @author CSC153
 */
class Node
{
  // +--------+-----------------------------------------
  // | Fields |
  // +--------+

  Object value;
  Node next;

  // +--------------+-----------------------------------
  // | Constructors |
  // +--------------+

  public Node(Object value, Node next) {
    this.value = value;
    this.next = next;
  } // Node(Object, Node)

} // class Node

