/* 
	Debug.java

	Author:			becker
	Description:	<describe the Debug class here>
*/



/*----------------------------------------------------------------*/
/* ----- DEBUG stuff ----- */
/** class <code>Debug</code> is a utility class to be used
 *  where ever convenient. It can be placed in any package.
 *  
 */
 
public class Debug
{

private static boolean debug = true;
    
/** Set the Debug Trace Flag
 *  @param flag value to set the Debug Trace to
 */
public static void setFlag(boolean flag){
	debug = flag;
}
/** Look at the Debug trace flag
 *  @return the current setting of the Debug Trace Flag
 */
public static boolean isSet(){
	return debug;
}
    

}


/* Debug.java */
