weka.experiment
Class InstancesResultListener

java.lang.Object
  |
  +--weka.experiment.CSVResultListener
        |
        +--weka.experiment.InstancesResultListener
All Implemented Interfaces:
OptionHandler, ResultListener, java.io.Serializable

public class InstancesResultListener
extends CSVResultListener

InstancesResultListener outputs the received results in arff format to a Writer. All results must be received before the instances can be written out.

Version:
$Revision: 1.6 $
Author:
Len Trigg (trigg@cs.waikato.ac.nz)
See Also:
Serialized Form

Constructor Summary
InstancesResultListener()
           
 
Method Summary
 void acceptResult(ResultProducer rp, java.lang.Object[] key, java.lang.Object[] result)
          Collects each instance and adjusts the header information.
 java.lang.String globalInfo()
          Returns a string describing this result listener
 void postProcess(ResultProducer rp)
          Perform any postprocessing.
 void preProcess(ResultProducer rp)
          Prepare for the results to be received.
 
Methods inherited from class weka.experiment.CSVResultListener
determineColumnConstraints, getOptions, getOutputFile, isResultRequired, listOptions, outputFileTipText, setOptions, setOutputFile
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InstancesResultListener

public InstancesResultListener()
Method Detail

globalInfo

public java.lang.String globalInfo()
Returns a string describing this result listener

Overrides:
globalInfo in class CSVResultListener
Returns:
a description of the result listener suitable for displaying in the explorer/experimenter gui

preProcess

public void preProcess(ResultProducer rp)
                throws java.lang.Exception
Prepare for the results to be received.

Specified by:
preProcess in interface ResultListener
Overrides:
preProcess in class CSVResultListener
Parameters:
rp - the ResultProducer that will generate the results
Throws:
java.lang.Exception - if an error occurs during preprocessing.

postProcess

public void postProcess(ResultProducer rp)
                 throws java.lang.Exception
Perform any postprocessing. When this method is called, it indicates that no more results will be sent that need to be grouped together in any way.

Specified by:
postProcess in interface ResultListener
Overrides:
postProcess in class CSVResultListener
Parameters:
rp - the ResultProducer that generated the results
Throws:
java.lang.Exception - if an error occurs

acceptResult

public void acceptResult(ResultProducer rp,
                         java.lang.Object[] key,
                         java.lang.Object[] result)
                  throws java.lang.Exception
Collects each instance and adjusts the header information.

Specified by:
acceptResult in interface ResultListener
Overrides:
acceptResult in class CSVResultListener
Parameters:
rp - the ResultProducer that generated the result
key - The key for the results.
result - The actual results.
Throws:
java.lang.Exception - if the result could not be accepted.


Copyright (c) 2003 David Lindsay, Computer Learning Research Centre, Dept. Computer Science, Royal Holloway, University of London