org.rubato.rubettes.image
Class ImageDisplayRubette

java.lang.Object
  extended by org.rubato.base.AbstractRubette
      extended by org.rubato.base.SimpleAbstractRubette
          extended by org.rubato.rubettes.image.ImageDisplayRubette
All Implemented Interfaces:
Rubette

public class ImageDisplayRubette
extends SimpleAbstractRubette


Constructor Summary
ImageDisplayRubette()
           
 
Method Summary
 java.lang.String getName()
          Returns the name of the rubette.
 void run(RunInfo runInfo)
          Runs the Rubette.
 
Methods inherited from class org.rubato.base.SimpleAbstractRubette
applyProperties, duplicate, fromXML, getProperties, getProperty, getRubetteProperties, hasProperties, putProperty, revertProperties, toXML
 
Methods inherited from class org.rubato.base.AbstractRubette
addError, addError, clearErrors, getErrors, getGroup, getIcon, getInCount, getInfo, getInput, getInTip, getLongDescription, getModel, getOutCount, getOutput, getOutTip, getShortDescription, getView, hasErrors, hasInfo, hasView, init, newInstance, setInCount, setModel, setOutCount, setOutput, updateView
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ImageDisplayRubette

public ImageDisplayRubette()
Method Detail

getName

public java.lang.String getName()
Description copied from class: AbstractRubette
Returns the name of the rubette.

Specified by:
getName in interface Rubette
Specified by:
getName in class AbstractRubette

run

public void run(RunInfo runInfo)
Description copied from class: AbstractRubette
Runs the Rubette. This is the heart of the Rubette and implements the actual computation. Input values are retrieved with the getInput method and output values are stored using the setOutput method. The runInfo parameter object has a method stopped() which should be called regularly, and, in the case it returns false, the run() method should exit gracefully.

Specified by:
run in interface Rubette
Specified by:
run in class AbstractRubette
Parameters:
runInfo - contains information about the Runner that executes the network