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

/** An interface used in the Node class to ensure that
 *  an object has an operateOn method.
 */

public interface NodeOperator {
  void operateOn(Node node);
}

