edu.udo.cs.yale.operator
Class ResultObjectAdapter

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
All Implemented Interfaces:
IOObject, ResultObject
Direct Known Subclasses:
AbstractExampleSet, AbstractModel, Averagable, AverageVector, CorrelationMatrix, DataStatistics, IGSSResult, ParameterSet, RunVector, SignificanceTestResult, SimpleResultObject, Threshold, WekaAssociator

public abstract class ResultObjectAdapter
extends AbstractIOObject
implements ResultObject

An adapter class for the interface ResultObject. Implements most methods and can be used if the subclass does not need to extend other classes. The method toResultString() delivers the return value of Object.toString(). The visualization components for the graphical user interface is simply the HTML representation of the result string. If a subclass also implements Saveable an action for Saving will automatically be added to the actions list.

Version:
$Id: ResultObjectAdapter.java,v 2.15 2006/03/27 13:21:58 ingomierswa Exp $
Author:
Ingo Mierswa, Simon Fischer

Field Summary
private  java.util.List<javax.swing.Action> actions
           
 
Constructor Summary
ResultObjectAdapter()
           
 
Method Summary
protected  void addAction(javax.swing.Action a)
          Adds an action to the list of Java Swing Actions which will shown in the visualization component.
 java.util.List<javax.swing.Action> getActions()
          Returns a list of all actions which can be performed for this result object.
 java.lang.String getName()
          The default implementation returns the classname without package.
 java.awt.Component getVisualisationComponent(IOContainer container)
          Returns a label that displays the toResultString() result encoded as html.
static java.lang.String toHTML(java.lang.String string)
          Encodes the given String as HTML.
 java.lang.String toResultString()
          The default implementation simply returns the result of the method Object.toString().
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
copy, read, read, read, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Field Detail

actions

private java.util.List<javax.swing.Action> actions
Constructor Detail

ResultObjectAdapter

public ResultObjectAdapter()
Method Detail

getName

public java.lang.String getName()
The default implementation returns the classname without package.

Specified by:
getName in interface ResultObject


addAction

protected void addAction(javax.swing.Action a)
Adds an action to the list of Java Swing Actions which will shown in the visualization component. If the class implements Saveable an action for saving is already added.


getActions

public java.util.List<javax.swing.Action> getActions()
Returns a list of all actions which can be performed for this result object.

Specified by:
getActions in interface ResultObject


toResultString

public java.lang.String toResultString()
The default implementation simply returns the result of the method Object.toString().

Specified by:
toResultString in interface ResultObject


getVisualisationComponent

public java.awt.Component getVisualisationComponent(IOContainer container)
Returns a label that displays the toResultString() result encoded as html. Please note that the returned label is already enclosed by a scroll pane. If you overwrite this method you should again ensure that the returned component is scrollable. The given container is totally ignored.

Specified by:
getVisualisationComponent in interface ResultObject


toHTML

public static java.lang.String toHTML(java.lang.String string)
Encodes the given String as HTML. Only linebreaks and less then and greater than will be encoded.



Copyright © 2001-2006