All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.remoting.samples.chat.utility.Debug Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
package org.jboss.remoting.samples.chat.utility;

/**
 * 

Title: Chat4

*

Description:

*

Copyright: Copyright (c) 2003

*

Company:

* @author not attributable * @version 1.0 */ public class Debug { private static boolean on = false; public static void turnOn() { on = true; System.out.println("Debug: chat debugging turned on"); } public static void turnOff() { on = false; System.out.println("Debug: chat debugging turned on"); } public static boolean isOn() { return on; } public static void println(String str) { if (on) if (str != null) System.out.println(str); else System.out.println("null"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy