|
Message
From: cvs at opencores.org<cvs@o...>
Date: Tue Dec 18 03:32:27 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/12 18:03:32 Modified: jop/java/tools/src/com/jopdesign/debug/jdwp/util Debug.java Log: Methods added: 150: public static void print(int data) 157: public static void println(int data) Revision Changes Path 1.2 jop/java/tools/src/com/jopdesign/debug/jdwp/util/Debug.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/debug/jdwp/util/Debug.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: Debug.java =================================================================== RCS file: /cvsroot/paulo/jop/java/tools/src/com/jopdesign/debug/jdwp/util/Debug.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- Debug.java 3 Oct 2007 00:54:08 -0000 1.1 +++ Debug.java 18 Dec 2007 02:32:26 -0000 1.2 @@ -147,6 +147,20 @@ debug.out.flush(); } + public static void print(int data) + { + Debug debug = getDebug(); + debug.out.print(data); + debug.out.flush(); + } + + public static void println(int data) + { + Debug debug = getDebug(); + debug.out.println(data); + debug.out.flush(); + } + public static void setDebugging(boolean value) { Debug debug = getDebug();
|