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

javajs.util.DebugJS Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.util;

/**
 * A class to insert a JavaScript debug statement for Firefox or Chrome debugger
 * 
 */

public class DebugJS {

	/**
	 * Insert a JavaScript debug statement
	 * @param msg 
	 * 
	 */
		 public static void _(String msg) {
		/**
		 * @j2sNative
		 * 
		 * if (Clazz._debugging) {
		 * 
		 * debugger;
		 * 
		 * }
		 * 
		 */
		{}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy