程序包 weka.gui.beans

类 LogPanel

所有已实现的接口:
ImageObserver, MenuContainer, Serializable, Accessible, Logger

public class LogPanel extends JPanel implements Logger
Class for displaying a status area (made up of a variable number of lines) and a log area.
版本:
$Revision: 9700 $
作者:
mhall (mhall{[at]}pentaho{[dot]}com)
另请参阅:
  • 构造器详细资料

    • LogPanel

      public LogPanel()
  • 方法详细资料

    • clearStatus

      public void clearStatus()
      Clear the status area.
    • getStatusTable

      public JTable getStatusTable()
      The JTable used for the status messages (in case clients want to attach listeners etc.)
      返回:
      the JTable used for the status messages.
    • logMessage

      public 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.
      指定者:
      logMessage 在接口中 Logger
      参数:
      message - the log message
    • statusMessage

      public void statusMessage(String message)
      Sends the supplied message to the status area. 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). These messages have the following format: <Component name (needs to be unique)>|<Parameter string (optional)|
      指定者:
      statusMessage 在接口中 Logger
      参数:
      message - the status message.
    • main

      public static void main(String[] args)
      Main method to test this class.
      参数:
      args - any arguments (unused)