Class AbstractDataSink

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, EventListener, Accessible, BeanCommon, DataSink, DataSourceListener, InstanceListener, TestSetListener, ThresholdDataListener, TrainingSetListener, Visible
Direct Known Subclasses:
Saver

Abstract class for objects that store instances to some destination.
Since:
1.0
Version:
$Revision: 8034 $
Author:
Mark Hall
See Also:
  • Constructor Details

    • AbstractDataSink

      public AbstractDataSink()
  • Method Details

    • acceptTrainingSet

      public abstract void acceptTrainingSet(TrainingSetEvent e)
      Accept a training set
      Specified by:
      acceptTrainingSet in interface TrainingSetListener
      Parameters:
      e - a TrainingSetEvent value
    • acceptTestSet

      public abstract void acceptTestSet(TestSetEvent e)
      Accept a test set
      Specified by:
      acceptTestSet in interface TestSetListener
      Parameters:
      e - a TestSetEvent value
    • acceptDataSet

      public abstract void acceptDataSet(DataSetEvent e)
      Accept a data set
      Specified by:
      acceptDataSet in interface DataSourceListener
      Parameters:
      e - a DataSetEvent value
    • acceptDataSet

      public abstract void acceptDataSet(ThresholdDataEvent e)
      Accept a threshold data set
      Specified by:
      acceptDataSet in interface ThresholdDataListener
      Parameters:
      e - a ThresholdDataEvent value
    • acceptInstance

      public abstract void acceptInstance(InstanceEvent e)
      Accept an instance
      Specified by:
      acceptInstance in interface InstanceListener
      Parameters:
      e - an InstanceEvent value
    • setVisual

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

      public BeanVisual getVisual()
      Get the visual being used by this data source.
      Specified by:
      getVisual in interface Visible
      Returns:
      a BeanVisual value
    • useDefaultVisual

      public void useDefaultVisual()
      Use the default images for a data source
      Specified by:
      useDefaultVisual in interface Visible
    • 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
    • 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
    • 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
      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
      source - the source with which this object has been registered as a listener
    • setLog

      public void setLog(Logger logger)
      Set a log for this bean
      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