|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--ostore.util.Debug
Debug provides printing facilities for debug purposes.
Constructor Summary | |
---|---|
Debug()
|
Method Summary | |
---|---|
static void |
print(String msg)
|
static void |
print(String tag,
char msg)
|
static void |
print(String tag,
String msg)
If debugging has been turned on for tag , print
msg . |
static void |
println(String msg)
If debugging has been turned on for tag , print
msg , followed by a new line. |
static void |
println(String tag,
String msg)
|
static void |
printtag(String tag,
String msg)
If debugging has been turned on for tag , print
tag +msg . |
static void |
printtagln(String tag,
String msg)
If debugging has been turned on for tag , print
tag +msg , followed by a new line. |
static String |
tag_class(String fullname)
|
static void |
turnOff(String tag)
Turn off debugging for tag . |
static void |
turnOn(String tag)
Turn on debugging for tag . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Debug()
Method Detail |
public static final String tag_class(String fullname)
public static final void println(String msg)
tag
, print
msg
, followed by a new line. The tag should
contain the name of the file this function is called from.
public static final void println(String tag, String msg)
public static final void printtagln(String tag, String msg)
tag
, print
tag
+msg
, followed by a new line. The tag
should contain the name of the file this function is called from.
public static final void print(String tag, String msg)
tag
, print
msg
. The tag should contain the name of the file
this function is called from.
public static final void print(String msg)
public static final void print(String tag, char msg)
public static final void printtag(String tag, String msg)
tag
, print
tag
+msg
. The tag should contain
the name of the file this function is called from.
public static final void turnOn(String tag)
tag
.
public static final void turnOff(String tag)
tag
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |