Searched defs:Print (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DPrint.java62 ** Print.println("test message");
64 ** Print.dprintln("test message");
65 ** The advantage of using Print.println is that the message ("test message") can be
67 ** Issuing a call to 'Print.dprintln("hello world")' may print a console message
70 ** This indicates that the 'Print.dprintln' is located in the method 'doSomething'
80 ** prepend the location (stackframe) of the 'Print.dprintXXX' call.
89 ** System.out.println("hello") => Print.println("hello")
90 ** <Throwable>.printStackTrace() => Print.printStackTrace("Error", <Throwable>)
91 ** Thread.dumpStack() => Print.printStackTrace("Stack Trace");
92 ** if (debug) System.out.println("x") => Print
105 public class Print class
[all...]

Completed in 10 milliseconds