Class ClassAssigner

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, EventListener, Accessible, BeanCommon, DataSource, DataSourceListener, EventConstraints, InstanceListener, StructureProducer, TestSetListener, TestSetProducer, TrainingSetListener, TrainingSetProducer, Visible

Bean that assigns a class attribute to a data set.
Version:
$Revision: 10220 $
Author:
Mark Hall
See Also:
  • Constructor Details

    • ClassAssigner

      public ClassAssigner()
  • Method Details

    • globalInfo

      public String globalInfo()
      Global info for this bean
      Returns:
      a String value
    • setCustomName

      public void setCustomName(String name)
      Set a custom (descriptive) name for this bean
      Specified by:
      setCustomName in interface BeanCommon
      Parameters:
      name - the name to use
    • getCustomName

      public String getCustomName()
      Get the custom (descriptive) name for this bean (if one has been set)
      Specified by:
      getCustomName in interface BeanCommon
      Returns:
      the custom name (or the default name)
    • classColumnTipText

      public String classColumnTipText()
      Tool tip text for this property
      Returns:
      a String value
    • getStructure

      public Instances getStructure(String eventName)
      Get the structure of the output encapsulated in the named event. If the structure can't be determined in advance of seeing input, or this StructureProducer does not generate the named event, null should be returned.
      Specified by:
      getStructure in interface StructureProducer
      Parameters:
      eventName - the name of the output event that encapsulates the requested output.
      Returns:
      the structure of the output encapsulated in the named event or null if it can't be determined in advance of seeing input or the named event is not generated by this StructureProduce.
    • getConnectedFormat

      public Instances getConnectedFormat()
      Returns the structure of the incoming instances (if any)
      Returns:
      an Instances value
    • setClassColumn

      public void setClassColumn(String col)
    • getClassColumn

      public String getClassColumn()
    • acceptDataSet

      public void acceptDataSet(DataSetEvent e)
      Specified by:
      acceptDataSet in interface DataSourceListener
    • acceptTrainingSet

      public void acceptTrainingSet(TrainingSetEvent e)
      Description copied from interface: TrainingSetListener
      Accept and process a training set
      Specified by:
      acceptTrainingSet in interface TrainingSetListener
      Parameters:
      e - a TrainingSetEvent value
    • acceptTestSet

      public void acceptTestSet(TestSetEvent e)
      Description copied from interface: TestSetListener
      Accept and process a test set event
      Specified by:
      acceptTestSet in interface TestSetListener
      Parameters:
      e - a TestSetEvent value
    • acceptInstance

      public void acceptInstance(InstanceEvent e)
      Description copied from interface: InstanceListener
      Accept and process an instance event
      Specified by:
      acceptInstance in interface InstanceListener
      Parameters:
      e - an InstanceEvent value
    • addInstanceListener

      public void addInstanceListener(InstanceListener tsl)
      Description copied from interface: DataSource
      Add an instance listener
      Specified by:
      addInstanceListener in interface DataSource
      Parameters:
      tsl - an InstanceListener value
    • removeInstanceListener

      public void removeInstanceListener(InstanceListener tsl)
      Description copied from interface: DataSource
      Remove an instance listener
      Specified by:
      removeInstanceListener in interface DataSource
      Parameters:
      tsl - an InstanceListener value
    • addDataSourceListener

      public void addDataSourceListener(DataSourceListener tsl)
      Description copied from interface: DataSource
      Add a data source listener
      Specified by:
      addDataSourceListener in interface DataSource
      Parameters:
      tsl - a DataSourceListener value
    • removeDataSourceListener

      public void removeDataSourceListener(DataSourceListener tsl)
      Description copied from interface: DataSource
      Remove a data source listener
      Specified by:
      removeDataSourceListener in interface DataSource
      Parameters:
      tsl - a DataSourceListener value
    • addTrainingSetListener

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

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

      public void addTestSetListener(TestSetListener tsl)
      Description copied from interface: TestSetProducer
      Add a listener for test set events
      Specified by:
      addTestSetListener in interface TestSetProducer
      Parameters:
      tsl - a TestSetListener value
    • removeTestSetListener

      public void removeTestSetListener(TestSetListener tsl)
      Description copied from interface: TestSetProducer
      Remove a listener for test set events
      Specified by:
      removeTestSetListener in interface TestSetProducer
      Parameters:
      tsl - a TestSetListener value
    • addDataFormatListener

      public void addDataFormatListener(DataFormatListener dfl)
    • removeDataFormatListener

      public void removeDataFormatListener(DataFormatListener dfl)
    • setVisual

      public void setVisual(BeanVisual newVisual)
      Description copied from interface: Visible
      Set a new visual representation
      Specified by:
      setVisual in interface Visible
      Parameters:
      newVisual - a BeanVisual value
    • getVisual

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

      public void useDefaultVisual()
      Description copied from interface: Visible
      Use the default visual representation
      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 - 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)
      Description copied from interface: BeanCommon
      Set a logger
      Specified by:
      setLog in interface BeanCommon
      Parameters:
      logger - a weka.gui.Logger value
    • stop

      public void stop()
      Description copied from interface: BeanCommon
      Stop any processing that the bean might be doing.
      Specified by:
      stop in interface BeanCommon
    • isBusy

      public boolean isBusy()
      Returns true if. at this time, the bean is busy with some (i.e. perhaps a worker thread is performing some calculation).
      Specified by:
      isBusy in interface BeanCommon
      Returns:
      true if the bean is busy.
    • eventGeneratable

      public boolean eventGeneratable(String eventName)
      Returns true, if at the current time, the named event could be generated. Assumes that the supplied event name is an event that could be generated by this bean
      Specified by:
      eventGeneratable in interface EventConstraints
      Parameters:
      eventName - the name of the event in question
      Returns:
      true if the named event could be generated at this point in time