/**
 * A wrapper class used to keep track of the level of debugging.
 * Traditionally, 0 means "No debugging message" and higher numbers
 * are used to represent different amounts of debugging message
 * (higher levels traditionally correspond to more messages). 
 * <p>
 * To change the debug level, you can explicitly change the initializtion
 * in this class and recompile or you can change it externally.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of 11 February 2007
 */
public class DebugLevel
{
  public int level = 0;
} // class DebugLevel
