|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ALDWorkflowException | |
---|---|
de.unihalle.informatik.Alida.gui | Package containing GUI components for interactive operator selection/control. |
de.unihalle.informatik.Alida.operator | Contains the core of Alida, i.e. the operator concept and processing graph stuff. |
de.unihalle.informatik.Alida.workflows | Classes related to workflows in Alida. |
Uses of ALDWorkflowException in de.unihalle.informatik.Alida.gui |
---|
Methods in de.unihalle.informatik.Alida.gui that throw ALDWorkflowException | |
---|---|
void |
ALDOperatorGUIExecutionProxy.updateOperator(ALDOperator newOp)
Method called by GUI if a new operator was loaded. |
Uses of ALDWorkflowException in de.unihalle.informatik.Alida.operator |
---|
Methods in de.unihalle.informatik.Alida.operator that throw ALDWorkflowException | |
---|---|
ALDOperator |
ALDOperatorLocation.createOperator()
Create an ALDOperator form this location object. |
Uses of ALDWorkflowException in de.unihalle.informatik.Alida.workflows |
---|
Methods in de.unihalle.informatik.Alida.workflows that throw ALDWorkflowException | |
---|---|
void |
ALDWorkflow.addParameter(ALDOpParameterDescriptor descriptor)
Add a new parameter to this workflow. |
ALDWorkflowNodeID |
ALDWorkflow.copyNode(ALDWorkflowNodeID nodeId,
boolean retainInEdges,
boolean retainParameterValues)
Copy this node. |
ALDWorkflowEdgeID |
ALDWorkflow.createEdge(ALDWorkflowNodeID sourceNodeId,
java.lang.String sourceParameterName,
ALDWorkflowNodeID targetNodeId,
java.lang.String targetParameterName)
This method calls createEdge with the argument allowDataConversion = false . |
ALDWorkflowEdgeID |
ALDWorkflow.createEdge(ALDWorkflowNodeID sourceNodeId,
java.lang.String sourceParameterName,
ALDWorkflowNodeID targetNodeId,
java.lang.String targetParameterName,
java.lang.Boolean allowDataConversion)
Add an edge representing the data flow between the parameter sourceParameterName in the operator represented by the node
with sourceNodeId
to the parameter targetParameterName in the operator represented by the node with
targetNodeId . |
ALDWorkflowNodeID |
ALDWorkflow.createNode(ALDOperator op)
Add a new operator to this workflow. |
ALDWorkflowNodeID |
ALDWorkflow.createNode(ALDOperatorLocation location)
Add a new operator node to this workflow. |
ALDWorkflowNodeID |
ALDWorkflow.createNode(java.lang.String opName)
Add a new operator node to this workflow. |
ALDWorkflowEdge |
ALDWorkflow.getEdge(ALDWorkflowEdgeID edgeId)
Get the workflow edge associated with edgeId . |
java.util.Collection<java.lang.String> |
ALDWorkflow.getMissingRequiredInputs(ALDWorkflowNodeID nodeId)
Returns the names of all required input parameters of the operator object associated with the node which are not linked and have a value of null. |
ALDWorkflowNode |
ALDWorkflow.getNode(ALDWorkflowNodeID nodeId)
Get the workflow node associated with nodeId . |
ALDOperator |
ALDWorkflow.getOperator(ALDWorkflowNodeID nodeId)
Get the operator associated with nodeId . |
ALDWorkflowNodeID |
ALDWorkflow.getSourceNodeId(ALDWorkflowEdgeID edgeId)
Return the NodeId of the source node of this edge |
java.lang.String |
ALDWorkflow.getSourceParameterName(ALDWorkflowEdgeID edgeId)
Return the source parameter name of this edge |
ALDWorkflowNode.ALDWorkflowNodeState |
ALDWorkflow.getState(ALDWorkflowNodeID nodeId)
Get the state of node with nodeId . |
ALDWorkflowNodeID |
ALDWorkflow.getTargetNodeId(ALDWorkflowEdgeID edgeId)
Return the NodeId of the target node of this edge |
java.lang.String |
ALDWorkflow.getTargetParameterName(ALDWorkflowEdgeID edgeId)
Return the target parameter name of this edge |
static ALDWorkflow |
ALDWorkflow.load(java.io.File file)
Load a workflow from File and create a new workflow object. |
static ALDWorkflow |
ALDWorkflow.load(java.io.File file,
boolean doFireEvent)
Load a workflow from File and create a new workflow object. |
static ALDWorkflow |
ALDWorkflow.load(java.lang.String filename)
Load a workflow from file with filename and create a new workflow object. |
static ALDWorkflow |
ALDWorkflow.load(java.lang.String filename,
boolean doFireEvent)
Load a workflow from file with filename and create a new workflow object. |
void |
ALDWorkflow.nodeParameterChanged(ALDWorkflowNodeID nodeId)
Notify the workflow that parameters of the operator object associated with node nodeId have changed. |
void |
ALDWorkflow.redirectSource(ALDWorkflowEdgeID edgeId,
ALDWorkflowNodeID newSourceNodeId,
java.lang.String newSourceParameterName)
Call redirectSource with with the argument allowDataConversion = false . |
void |
ALDWorkflow.redirectSource(ALDWorkflowEdgeID edgeId,
ALDWorkflowNodeID newSourceNodeId,
java.lang.String newSourceParameterName,
java.lang.Boolean allowDataConversion)
Redirect the source of an edge. |
void |
ALDWorkflow.redirectTarget(ALDWorkflowEdgeID edgeId,
ALDWorkflowNodeID newTargetNodeId,
java.lang.String newTargetParameterName)
Calls redirectTarget with the argument allowDataConversion = false
The same restrictions as for createEdge apply. |
void |
ALDWorkflow.redirectTarget(ALDWorkflowEdgeID edgeId,
ALDWorkflowNodeID newTargetNodeId,
java.lang.String newTargetParameterName,
java.lang.Boolean allowDataConversion)
Redirect the target of an edge. |
void |
ALDWorkflow.removeEdge(ALDWorkflowEdgeID edgeId)
Remove an edge from the workflow. |
void |
ALDWorkflow.removeNode(ALDWorkflowNodeID nodeId)
Remove a node with all incoming and outgoing edges from the workflow. |
protected void |
ALDWorkflow.removeParameter(java.lang.String parameterName)
Remove a parameter from this workflow. |
void |
ALDWorkflow.runFromNode(ALDWorkflowNodeID nodeId)
Run the given node and all descendants of the given node. |
void |
ALDWorkflow.runFromNode(ALDWorkflowNodeID nodeId,
boolean waitForCompletion)
Run the given node and all descendants of the given node. |
void |
ALDWorkflow.runFromNode(ALDWorkflowNodeID nodeId,
boolean waitForCompletion,
boolean stepRecursively)
Run the given node and all descendants of the given node. |
void |
ALDWorkflow.runNode(ALDWorkflowNodeID nodeId)
Run the given node and all its ancestors. |
void |
ALDWorkflow.runNode(ALDWorkflowNodeID nodeId,
boolean waitForCompletion)
Run the given node and all its ancestors. |
void |
ALDWorkflow.runNode(ALDWorkflowNodeID nodeId,
boolean waitForCompletion,
boolean stepRecursively)
Run the given node and all its ancestors. |
void |
ALDWorkflow.runWorkflow()
Run the complete workflow. |
void |
ALDWorkflow.runWorkflow(boolean waitForCompletion)
Run the complete workflow. |
void |
ALDWorkflow.runWorkflow(boolean waitForCompletion,
boolean stepRecursively)
Run the complete workflow. |
void |
ALDWorkflow.save(java.io.File file)
Save this workflow to file. |
void |
ALDWorkflow.save(java.io.File file,
boolean doFireEvent)
Save this workflow to file. |
void |
ALDWorkflow.save(java.lang.String filename)
Save this workflow to file. |
void |
ALDWorkflow.save(java.lang.String filename,
boolean doFireEvent)
Save this workflow to file. |
protected void |
ALDWorkflowNode.setOperator(ALDOperator newOp)
Sets the operator associated with this node. |
void |
ALDWorkflow.setOperator(ALDWorkflowNodeID nodeId,
ALDOperator newOp)
Set the operator associated with nodeId . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |