// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

/** Leaf node: a node with no subtrees. */

public class Leaf extends Node {
  public Leaf(Object value) {
    super(value, null, null);
  }
}

