Class AbstractEvaluator

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, BeanCommon, Visible
Direct Known Subclasses:
ClassifierPerformanceEvaluator, ClustererPerformanceEvaluator, IncrementalClassifierEvaluator

public abstract class AbstractEvaluator extends JPanel implements Visible, BeanCommon, Serializable
Abstract class for objects that can provide some kind of evaluation for classifier, clusterers etc.
Since:
1.0
Version:
$Revision: 8034 $
Author:
Mark Hall
See Also:
  • Constructor Details

    • AbstractEvaluator

      public AbstractEvaluator()
      Constructor
  • Method Details

    • setVisual

      public void setVisual(BeanVisual newVisual)
      Set the visual
      Specified by:
      setVisual in interface Visible
      Parameters:
      newVisual - a BeanVisual value
    • getVisual

      public BeanVisual getVisual()
      Get the visual
      Specified by:
      getVisual in interface Visible
      Returns:
      a BeanVisual value
    • useDefaultVisual

      public void useDefaultVisual()
      Use the default images for an evaluator
      Specified by:
      useDefaultVisual in interface Visible
    • connectionAllowed

      public boolean connectionAllowed(String eventName)
      Returns true if, at this time, the object will accept a connection according to the supplied event name
      Specified by:
      connectionAllowed in interface BeanCommon
      Parameters:
      eventName - the event name
      Returns:
      true if the object will accept a connection
    • connectionAllowed

      public boolean connectionAllowed(EventSetDescriptor esd)
      Returns true if, at this time, the object will accept a connection according to the supplied EventSetDescriptor
      Specified by:
      connectionAllowed in interface BeanCommon
      Parameters:
      esd - the EventSetDescriptor
      Returns:
      true if the object will accept a connection
    • connectionNotification

      public void connectionNotification(String eventName, Object source)
      Notify this object that it has been registered as a listener with a source with respect to the supplied event name
      Specified by:
      connectionNotification in interface BeanCommon
      Parameters:
      eventName - the event name
      source - the source with which this object has been registered as a listener
    • disconnectionNotification

      public void disconnectionNotification(String eventName, Object source)
      Notify this object that it has been deregistered as a listener with a source with respect to the supplied event named
      Specified by:
      disconnectionNotification in interface BeanCommon
      Parameters:
      eventName - the event name
      source - the source with which this object has been registered as a listener
    • setLog

      public void setLog(Logger logger)
      Set a logger
      Specified by:
      setLog in interface BeanCommon
      Parameters:
      logger - a weka.gui.Logger value
    • stop

      public abstract void stop()
      Stop any processing that the bean might be doing. Subclass must implement
      Specified by:
      stop in interface BeanCommon