Package | Description |
---|---|
org.processmining.models.cnet | |
org.processmining.models.cnet.concepts | |
org.processmining.models.dcnet | |
org.processmining.models.visualcnet | |
org.processmining.plugins.dcnet |
Modifier and Type | Field and Description |
---|---|
protected CNetNode |
CNet.endNode
The endNode of the CNet;
|
protected CNetNode |
CNet.startNode
The startNode of the CNet
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<CNetNode,java.util.Set<CNetBinding>> |
CNet.inputBindings
The input bindings in the CNet
|
protected java.util.Set<CNetNode> |
CNet.nodes
The nodes in this CNet
|
protected java.util.Map<CNetNode,java.util.Set<CNetBinding>> |
CNet.outputBindings
The output bindings in the CNet
|
Modifier and Type | Method and Description |
---|---|
CNetNode |
CNet.addNode(CNetNode node)
Add a node
|
CNetNode |
CNet.getEndNode() |
CNetNode |
CausalNet.getEndNode() |
CNetNode |
CNetBinding.getNode()
Returns the node to which this binding belongs
|
CNetNode |
CNet.getStartNode() |
CNetNode |
CausalNet.getStartNode() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<CNetNode> |
CNetBinding.getBoundNodes()
returns the set of nodes bound by this binding
|
java.util.Set<CNetNode> |
CNet.getNodes() |
java.util.Set<CNetNode> |
CausalNet.getNodes() |
java.util.Set<CNetNode> |
CNet.getPredecessors(CNetNode node)
Returns the predecessors of a CNet node, i.e.
|
java.util.Set<CNetNode> |
CausalNet.getPredecessors(CNetNode node) |
java.util.Set<CNetNode> |
CNet.getSuccessors(CNetNode node)
Returns the successors of a CNet node, i.e.
|
java.util.Set<CNetNode> |
CausalNet.getSuccessors(CNetNode node) |
Modifier and Type | Method and Description |
---|---|
CNetBinding |
CNet.addInputBinding(CNetNode node,
CNetNode... nodes)
Add an input binding
|
CNetBinding |
CNet.addInputBinding(CNetNode node,
CNetNode... nodes)
Add an input binding
|
CNetBinding |
CNet.addInputBinding(CNetNode node,
java.util.Collection<? extends CNetNode> nodes)
Add an input binding
|
CNetNode |
CNet.addNode(CNetNode node)
Add a node
|
CNetBinding |
CNet.addOutputBinding(CNetNode node,
CNetNode... nodes)
Add an output binding
|
CNetBinding |
CNet.addOutputBinding(CNetNode node,
CNetNode... nodes)
Add an output binding
|
CNetBinding |
CNet.addOutputBinding(CNetNode node,
java.util.Collection<? extends CNetNode> nodes)
Add an output binding
|
int |
CNetNode.compareTo(CNetNode other)
comparison by label
|
java.util.Set<CNetBinding> |
CNet.getBindings(CNetNode node)
Returns the bindings of the given node
|
java.util.Set<CNetBinding> |
CNet.getInputBindings(CNetNode node)
Returns the input bindings of the given node
|
java.util.Set<CNetBinding> |
CausalNet.getInputBindings(CNetNode node) |
java.util.Set<CNetBinding> |
CNet.getOutputBindings(CNetNode node)
Returns the output bindings of the given node
|
java.util.Set<CNetBinding> |
CausalNet.getOutputBindings(CNetNode node) |
java.util.Set<CNetNode> |
CNet.getPredecessors(CNetNode node)
Returns the predecessors of a CNet node, i.e.
|
java.util.Set<CNetNode> |
CausalNet.getPredecessors(CNetNode node) |
java.util.Set<CNetNode> |
CNet.getSuccessors(CNetNode node)
Returns the successors of a CNet node, i.e.
|
java.util.Set<CNetNode> |
CausalNet.getSuccessors(CNetNode node) |
void |
CNet.removeNode(CNetNode node)
Remove a node
|
void |
CNet.setEndNode(CNetNode endNode) |
void |
CNet.setStartNode(CNetNode startNode) |
Modifier and Type | Method and Description |
---|---|
CNetBinding |
CNet.addInputBinding(CNetNode node,
java.util.Collection<? extends CNetNode> nodes)
Add an input binding
|
CNetBinding |
CNet.addOutputBinding(CNetNode node,
java.util.Collection<? extends CNetNode> nodes)
Add an output binding
|
Constructor and Description |
---|
CNetBinding(CNetBinding.Type type,
CNetNode node,
CNetNode... boundNodes)
Instantiates a binding using CNetNodes.
|
CNetBinding(CNetBinding.Type type,
CNetNode node,
CNetNode... boundNodes)
Instantiates a binding using CNetNodes.
|
CNetBinding(CNetBinding.Type type,
CNetNode node,
java.util.Collection<? extends CNetNode> boundNodes)
Instantiates a binding using CNetNodes.
|
CNetBinding(CNetBinding.Type type,
CNetNode node,
java.util.Set<? extends CNetNode> boundNodes)
Instantiates a binding using CNetNodes.
|
Constructor and Description |
---|
CNetBinding(CNetBinding.Type type,
CNetNode node,
java.util.Collection<? extends CNetNode> boundNodes)
Instantiates a binding using CNetNodes.
|
CNetBinding(CNetBinding.Type type,
CNetNode node,
java.util.Set<? extends CNetNode> boundNodes)
Instantiates a binding using CNetNodes.
|
Modifier and Type | Method and Description |
---|---|
int |
CNetObligation.addObligations(CNetNode source,
CNetNode target,
int numObligations)
Add obligations between a source node and a target node
|
int |
CNetObligation.getNumObligations(CNetNode source,
CNetNode target)
Get the number of obligations from a source node to a target node.
|
int |
CNetObligation.removeObligations(CNetNode source,
CNetNode target,
int numObligations)
remove obligations from source node to target node.
|
Modifier and Type | Method and Description |
---|---|
void |
DCNet.addWrite(CNetNode node,
java.lang.String variable) |
java.util.Set<java.lang.String> |
DCNet.getWrites(CNetNode node) |
java.util.Set<java.lang.String> |
DataAwareCausalNet.getWrites(CNetNode task) |
Modifier and Type | Method and Description |
---|---|
CNetNode |
CNetVNode.getNode() |
Modifier and Type | Method and Description |
---|---|
protected CNetVNode |
CNetV.createCNetVNode(org.processmining.models.graphbased.directed.AbstractDirectedGraph<CNetVNode,CNetVEdge> graph,
CNetNode node,
CNet ne) |
Constructor and Description |
---|
CNetVNode(org.processmining.models.graphbased.directed.AbstractDirectedGraph<CNetVNode,CNetVEdge> graph,
CNetNode node,
CNet net) |
Modifier and Type | Method and Description |
---|---|
protected org.processmining.plugins.graphviz.dot.DotNode |
DataAwareCausalNetVisualization.createNode(org.processmining.plugins.graphviz.dot.Dot dot,
CNetNode node) |
java.awt.Color |
DefaultEdgeDecorator.getEdgeColor(CNetNode source,
CNetNode target) |
java.awt.Color |
EdgeDecorator.getEdgeColor(CNetNode source,
CNetNode target) |
java.lang.String |
DefaultEdgeDecorator.getEdgeLabel(CNetNode source,
CNetNode target) |
java.lang.String |
EdgeDecorator.getEdgeLabel(CNetNode source,
CNetNode target) |
javax.swing.JPopupMenu |
DefaultEdgeDecorator.getEdgeMenu(CNetNode source,
CNetNode target) |
javax.swing.JPopupMenu |
EdgeDecorator.getEdgeMenu(CNetNode source,
CNetNode target) |
EdgeStyle |
DefaultEdgeDecorator.getEdgeStyle(CNetNode source,
CNetNode target) |
EdgeStyle |
EdgeDecorator.getEdgeStyle(CNetNode source,
CNetNode target) |
double |
DefaultEdgeDecorator.getEdgeWidth(CNetNode source,
CNetNode target) |
double |
EdgeDecorator.getEdgeWidth(CNetNode source,
CNetNode target) |
java.util.List<NodeDecorator.ColorSegment> |
DefaultNodeDecorator.getNodeColorSegments(CNetNode node) |
java.util.List<NodeDecorator.ColorSegment> |
NodeDecorator.getNodeColorSegments(CNetNode node) |
java.util.List<NodeDecorator.ColorSegment> |
WrappingNodeDecorator.getNodeColorSegments(CNetNode node) |
java.awt.Color |
DefaultNodeDecorator.getNodeFillColor(CNetNode node) |
java.awt.Color |
NodeDecorator.getNodeFillColor(CNetNode node) |
java.awt.Color |
WrappingNodeDecorator.getNodeFillColor(CNetNode node) |
java.awt.Image |
DefaultNodeDecorator.getNodeIcon(CNetNode cnetNode) |
java.awt.Image |
NodeDecorator.getNodeIcon(CNetNode node) |
java.awt.Image |
WrappingNodeDecorator.getNodeIcon(CNetNode cnetNode) |
java.lang.String |
DefaultNodeDecorator.getNodeLabel(CNetNode node) |
java.lang.String |
NodeDecorator.getNodeLabel(CNetNode node) |
java.lang.String |
WrappingNodeDecorator.getNodeLabel(CNetNode node) |
javax.swing.JPopupMenu |
DefaultNodeDecorator.getNodeMenu(CNetNode node) |
javax.swing.JPopupMenu |
NodeDecorator.getNodeMenu(CNetNode node) |
javax.swing.JPopupMenu |
WrappingNodeDecorator.getNodeMenu(CNetNode node) |
java.util.List<NodeDecorator.TrafficLightSegment> |
DefaultNodeDecorator.getNodeTrafficLights(CNetNode cnetNode) |
java.util.List<NodeDecorator.TrafficLightSegment> |
NodeDecorator.getNodeTrafficLights(CNetNode node) |
java.util.List<NodeDecorator.TrafficLightSegment> |
WrappingNodeDecorator.getNodeTrafficLights(CNetNode cnetNode) |