uk.ac.essex.ia.opview.runtime
Class ExecutionResult

java.lang.Object
  extended by uk.ac.essex.ia.opview.runtime.ExecutionResult

public class ExecutionResult
extends java.lang.Object

The result of an operator that has been executed. This will wrap the underlying RenderedImage output from the Operator but also allows access to the cell.

You should have received a copy of GNU public license with this code. If not please visit this site


Constructor Summary
ExecutionResult()
           
 
Method Summary
 com.jgraph.graph.DefaultGraphCell getCell()
           
 Operator getOperator()
           
 java.awt.image.RenderedImage getOutput()
           
 boolean isFailed()
           
 void setCell(com.jgraph.graph.DefaultGraphCell cell)
           
 void setFailed(boolean failed)
           
 void setOperator(Operator operator)
           
 void setOutput(java.awt.image.RenderedImage output)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExecutionResult

public ExecutionResult()
Method Detail

getCell

public com.jgraph.graph.DefaultGraphCell getCell()

setCell

public void setCell(com.jgraph.graph.DefaultGraphCell cell)

getOperator

public Operator getOperator()

setOperator

public void setOperator(Operator operator)

getOutput

public java.awt.image.RenderedImage getOutput()

setOutput

public void setOutput(java.awt.image.RenderedImage output)

isFailed

public boolean isFailed()

setFailed

public void setFailed(boolean failed)