de.cau.cs.kieler.sj
Class SimpleLogger

java.lang.Object
  extended by de.cau.cs.kieler.sj.SimpleLogger
All Implemented Interfaces:
SJLogger

public class SimpleLogger
extends Object
implements SJLogger

A very simple logger for a SJ program. If this logger is used all messages logged by the SJ program will printed via System.out.println()

Rating red

Nested Class Summary
 
Nested classes/interfaces inherited from interface de.cau.cs.kieler.sj.SJLogger
SJLogger.LogMsgTyp
 
Constructor Summary
SimpleLogger()
           
 
Method Summary
 void log(SJLogger.LogMsgTyp msgTyp, String message)
          Prints all logged messages to the terminal.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SimpleLogger

public SimpleLogger()
Method Detail

log

public void log(SJLogger.LogMsgTyp msgTyp,
                String message)
Prints all logged messages to the terminal.

Specified by:
log in interface SJLogger
Parameters:
msgTyp - The type of the given message.
message - The message to log at the terminal.