Mattie

Untitled

Dec 17th, 2010
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package bot_versie_10;
  2.  
  3. public class Debug
  4. {
  5.     private boolean debug   = true;
  6.  
  7.     public Debug(String line)
  8.     {
  9.         if (debug)
  10.             System.out.println(line);
  11.     }
  12.  
  13.     public void activateDebug()
  14.     {
  15.         debug = true;
  16.     }
  17.  
  18.     public void stopDebug()
  19.     {
  20.         debug = false;
  21.     }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment