Package eu.pedu.lib20s.dbg
Class ThreadMessages
java.lang.Object
eu.pedu.lib20s.dbg.ThreadMessages
public class ThreadMessages
extends java.lang.Object
Instances of class
$CLASSNAME
represents ...-
Method Summary
Modifier and Type Method Description static void
msg(java.lang.String text)
Message informing about something.static void
msgF(java.lang.String text)
Message announcing finishing of some action - mostly a method.static void
msgS(java.lang.String text)
Message announcing starting of some action - mostly a method.static void
setThreadSigns(java.lang.Character[] threadSigns)
Sets a new set of thread signs.
-
Method Details
-
setThreadSigns
public static void setThreadSigns(java.lang.Character[] threadSigns)Sets a new set of thread signs.- Parameters:
threadSigns
- The set set
-
msgS
public static void msgS(java.lang.String text)Message announcing starting of some action - mostly a method. As a sideefect the indent level of all subsequent messages in the current thread increases.- Parameters:
text
- Text of the sent message
-
msgF
public static void msgF(java.lang.String text)Message announcing finishing of some action - mostly a method. As a sideefect the indent level of all subsequent messages in the current thread decreases.- Parameters:
text
- Text of the sent message
-
msg
public static void msg(java.lang.String text)Message informing about something.- Parameters:
text
- Text of the sent message
-