default void |
ICreateFlowGraphContext.connect(com.google.common.collect.ImmutableSet<NodeKey> from,
INodeKeyProviding to,
IFlowGraphEdgeDataConfigurator data) |
For each source in from , adds an edge (source, to) to the flow graph.
|
void |
ICreateFlowGraphContext.connect(com.google.common.collect.ImmutableSet<NodeKey> from,
NodeKey to,
IFlowGraphEdgeDataConfigurator data) |
For each source in from , 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 the child at the given index in the toParent and adds an edge (from, child) to the
flow graph.
|
void |
ICreateFlowGraphContext.connect(com.google.common.collect.ImmutableSet<NodeKey> from,
TElement to,
IFlowGraphEdgeDataConfigurator data) |
Adds an edge (from, child) to the flow graph for every element in the set of from nodes.
|
default void |
ICreateFlowGraphContext.connect(INodeKeyProviding from,
INodeKeyProviding to,
IFlowGraphEdgeDataConfigurator data) |
Adds an edge (from, to) to the flow graph.
|
default void |
ICreateFlowGraphContext.connect(INodeKeyProviding from,
TElement toParent,
int toChildIndex,
IFlowGraphEdgeDataConfigurator data) |
Finds the child at the given index in the toParent 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(NodeKey from,
TElement toParent,
int toChildIndex,
IFlowGraphEdgeDataConfigurator data) |
Finds the child at the given index in the toParent and adds an edge (from, child) to the
flow graph.
|
void |
ICreateFlowGraphContext.connect(TElement from,
TElement to,
IFlowGraphEdgeDataConfigurator data) |
Adds an edge (from, to) to the flow graph.
|
void |
ICreateFlowGraphContext.connectChildToParent(TElement parent,
int childIndex,
IFlowGraphEdgeDataConfigurator data) |
Finds the child at the given index in the toParent and adds an edge (child, parent) to
the flow graph.
|
default void |
ICreateFlowGraphContext.connectEndPoints(com.google.common.collect.ImmutableSet<? extends INodeKeyProviding> from,
INodeKeyProviding to,
IFlowGraphEdgeDataConfigurator data) |
For each source in from , adds an edge (source, to) to the flow graph.
|
void |
ICreateFlowGraphContext.connectEndPoints(com.google.common.collect.ImmutableSet<? extends INodeKeyProviding> from,
NodeKey to,
IFlowGraphEdgeDataConfigurator data) |
For each source in from , adds an edge (source, to) to the flow graph.
|
void |
ICreateFlowGraphContext.connectEndPoints(com.google.common.collect.ImmutableSet<? extends INodeKeyProviding> from,
TElement toParent,
int toChildIndex,
IFlowGraphEdgeDataConfigurator data) |
Finds the child at the given index in the toParent and adds an edge (from, child) to the
flow graph.
|
void |
ICreateFlowGraphContext.connectEndPoints(com.google.common.collect.ImmutableSet<? extends INodeKeyProviding> from,
TElement to,
IFlowGraphEdgeDataConfigurator data) |
Adds an edge (from, child) to the flow graph for every element in the set of from nodes.
|
void |
ICreateFlowGraphContext.connectParentToChild(TElement parent,
int childIndex,
IFlowGraphEdgeDataConfigurator data) |
Adds an edge (parent, parent[childIndex]) to the flow graph.
|