Uses of Class
org.processmining.plugins.graphviz.dot.DotNode
-
Packages that use DotNode Package Description org.processmining.plugins.graphviz.dot org.processmining.plugins.graphviz.visualisation -
-
Uses of DotNode in org.processmining.plugins.graphviz.dot
Subclasses of DotNode in org.processmining.plugins.graphviz.dot Modifier and Type Class Description classDotclassDotClusterMethods in org.processmining.plugins.graphviz.dot that return DotNode Modifier and Type Method Description DotNodeDotCluster. addNode(java.lang.String label)Add a new dot node to the graph with the given label.DotNodeDotCluster. addNode(java.lang.String label, java.util.Map<java.lang.String,java.lang.String> options)Add a new dot node to the graph.DotNodeDotEdge. getSource()DotNodeDotEdge. getTarget()DotNodeDotCluster. insertNode(int index, java.lang.String label)Insert a new dot node to the graph.DotNodeDotCluster. insertNode(int index, java.lang.String label, java.util.Map<java.lang.String,java.lang.String> options)Insert a new dot node to the graph.Methods in org.processmining.plugins.graphviz.dot that return types with arguments of type DotNode Modifier and Type Method Description java.util.List<DotNode>DotCluster. getNodes()java.util.List<DotNode>DotCluster. getNodesRecursive()Methods in org.processmining.plugins.graphviz.dot with parameters of type DotNode Modifier and Type Method Description DotEdgeDotCluster. addEdge(DotNode source, DotNode target)Add an edge that connects source to target, with a default label.DotEdgeDotCluster. addEdge(DotNode source, DotNode target, java.lang.String label)Add an edge that connects source to target, having a label, without further options set.DotEdgeDotCluster. addEdge(DotNode source, DotNode target, java.lang.String label, java.util.Map<java.lang.String,java.lang.String> optionsMap)Add an edge that connects source to target, having a label and using an options map.voidDotCluster. addNode(DotNode node)Add an existing dot node to the graph.DotEdgeDotCluster. getFirstEdge(DotNode source, DotNode target)voidDotCluster. insertNode(int index, DotNode node)Insert an existing node into the graph.voidDotCluster. removeNode(DotNode node)Remove all equivalent dot nodes from the graph.voidDotEdge. setSource(DotNode source)voidDotEdge. setTarget(DotNode target)Constructors in org.processmining.plugins.graphviz.dot with parameters of type DotNode Constructor Description DotEdge(DotNode source, DotNode target)DotEdge(DotNode source, DotNode target, java.lang.String label, java.util.Map<java.lang.String,java.lang.String> optionsMap) -
Uses of DotNode in org.processmining.plugins.graphviz.visualisation
Methods in org.processmining.plugins.graphviz.visualisation that return types with arguments of type DotNode Modifier and Type Method Description java.util.List<DotNode>DotPanel. getNodes()
-