Class AbstractTrainingSetProducer

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, BeanCommon, TrainingSetProducer, Visible
Direct Known Subclasses:
TrainingSetMaker

public abstract class AbstractTrainingSetProducer extends JPanel implements TrainingSetProducer, Visible, BeanCommon, Serializable
Abstract class for TrainingSetProducers that contains default implementations of add/remove listener methods and default visual representation
Since:
1.0
Version:
$Revision: 10216 $
Author:
Mark Hall
See Also:
  • Constructor Details

    • AbstractTrainingSetProducer

      public AbstractTrainingSetProducer()
      Creates a new AbstractTrainingSetProducer instance.
  • Method Details

    • addTrainingSetListener

      public void addTrainingSetListener(TrainingSetListener tsl)
      Add a training set listener
      Specified by:
      addTrainingSetListener in interface TrainingSetProducer
      Parameters:
      tsl - a TrainingSetListener value
    • removeTrainingSetListener

      public void removeTrainingSetListener(TrainingSetListener tsl)
      Remove a training set listener
      Specified by:
      removeTrainingSetListener in interface TrainingSetProducer
      Parameters:
      tsl - a TrainingSetListener value
    • setVisual

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

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

      public void useDefaultVisual()
      Use the default visual for this bean
      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
      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 -
      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 name
      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