Package weka.gui.beans
Class FlowRunner.SimpleLogger
- java.lang.Object
-
- weka.gui.beans.FlowRunner.SimpleLogger
-
- All Implemented Interfaces:
Logger
- Enclosing class:
- FlowRunner
public static class FlowRunner.SimpleLogger extends java.lang.Object implements Logger
-
-
Constructor Summary
Constructors Constructor Description SimpleLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidlogMessage(java.lang.String lm)Sends the supplied message to the log area.voidstatusMessage(java.lang.String lm)Sends the supplied message to the status line.
-
-
-
Method Detail
-
logMessage
public void logMessage(java.lang.String lm)
Description copied from interface:LoggerSends the supplied message to the log area. These message will typically have the current timestamp prepended, and be viewable as a history.- Specified by:
logMessagein interfaceLogger- Parameters:
lm- the log message
-
statusMessage
public void statusMessage(java.lang.String lm)
Description copied from interface:LoggerSends the supplied message to the status line. These messages are typically one-line status messages to inform the user of progress during processing (i.e. it doesn't matter if the user doesn't happen to look at each message)- Specified by:
statusMessagein interfaceLogger- Parameters:
lm- the status message.
-
-