All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home

Interface weka.gui.Logger

public interface Logger
Interface for objects that display log (permanent historical) and status (transient) messages.

Version:
$Revision: 1.1 $
Author:
Len Trigg (trigg@cs.waikato.ac.nz)

Method Index

 o logMessage(String)
Sends the supplied message to the log area.
 o statusMessage(String)
Sends the supplied message to the status line.

Methods

 o logMessage
 public abstract void logMessage(String message)
Sends the supplied message to the log area. These message will typically have the current timestamp prepended, and be viewable as a history.

Parameters:
message - the log message
 o statusMessage
 public abstract void statusMessage(String message)
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)

Parameters:
message - the status message.

All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home