Uses of Interface
de.xima.fc.interfaces.workflow.analysis.IFlowGraphEdgeDataConfigurator
-
Packages that use IFlowGraphEdgeDataConfigurator Package Description de.xima.fc.interfaces.workflow.analysis de.xima.fc.interfaces.workflow.params -
-
Uses of IFlowGraphEdgeDataConfigurator in de.xima.fc.interfaces.workflow.analysis
Methods in de.xima.fc.interfaces.workflow.analysis with parameters of type IFlowGraphEdgeDataConfigurator Modifier and Type Method Description void
ICreateFlowGraphContext. connect(com.google.common.collect.ImmutableSet<NodeKey> from, NodeKey to, IFlowGraphEdgeDataConfigurator data)
For eachsource
infrom
, adds an edge(source, to)
to the flow graph.void
ICreateFlowGraphContext. connect(com.google.common.collect.ImmutableSet<NodeKey> from, TElement toParent, int toChildIndex, IFlowGraphEdgeDataConfigurator data)
Finds thechild
at the given index in thetoParent
and adds an edge(from, child)
to the flow graph.void
ICreateFlowGraphContext. connect(NodeKey from, NodeKey to, IFlowGraphEdgeDataConfigurator data)
Adds an edge(from, to)
to the flow graph.void
ICreateFlowGraphContext. connect(TElement from, TElement to, IFlowGraphEdgeDataConfigurator data)
Adds an edge(from, to)
to the flow graph.void
ICreateFlowGraphContext. connectParentToChild(TElement parent, int childIndex, IFlowGraphEdgeDataConfigurator data)
Adds an edge(from, to)
to the flow graph. -
Uses of IFlowGraphEdgeDataConfigurator in de.xima.fc.interfaces.workflow.params
Methods in de.xima.fc.interfaces.workflow.params that return IFlowGraphEdgeDataConfigurator Modifier and Type Method Description IFlowGraphEdgeDataConfigurator
ICreateFlowGraphParams. normalEdge()
Aconfigurator
for marking an edge as anormal
forward edge.IFlowGraphEdgeDataConfigurator
ICreateFlowGraphParams. throwingEdge()
Retrieves aconfigurator
for marking an edge as athrowing
forward edge.
-