程序包 weka.gui
接口 Logger
- 所有已知实现类:
FlowRunner.SimpleLogger
,LogPanel
,LogPanel
,SysErrLog
public interface Logger
Interface for objects that display log (permanent historical) and
status (transient) messages.
- 版本:
- $Revision: 1.5 $
- 作者:
- Len Trigg (trigg@cs.waikato.ac.nz)
-
方法概要
修饰符和类型方法说明void
logMessage
(String message) Sends the supplied message to the log area.void
statusMessage
(String message) Sends the supplied message to the status line.
-
方法详细资料
-
logMessage
Sends the supplied message to the log area. These message will typically have the current timestamp prepended, and be viewable as a history.- 参数:
message
- the log message
-
statusMessage
Sends 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)- 参数:
message
- the status message.
-