Uses of Class
org.processmining.prediction.NewTreeVisualizer.Node
-
Packages that use Node Package Description org.processmining.prediction.NewTreeVisualizer -
-
Uses of Node in org.processmining.prediction.NewTreeVisualizer
Methods in org.processmining.prediction.NewTreeVisualizer that return Node Modifier and Type Method Description NodeTreeBuild. create(java.io.Reader t, java.util.Map<java.lang.String,PredictionType> variableType, java.lang.Character charDelimiter, float maxValue)This will build A node structure from the dotty format passed.NodeEdge. getSource()Get the value of source.NodeEdge. getTarget()Get the value of target.Methods in org.processmining.prediction.NewTreeVisualizer with parameters of type Node Modifier and Type Method Description static intNode. getCount(Node r, int n)Recursively finds the number of visible nodes there are (this may accidentally count some of the invis nodes).static intNode. getGCount(Node r, int n)Recursively finds the number of visible groups of siblings there are.static intNode. getHeight(Node r, int l)Recursively finds the number of visible levels there are.static intNode. getTotalCount(Node r, int n)Recursively finds the total number of nodes there are.static intNode. getTotalGCount(Node r, int n)Recursively finds the total number of groups of siblings there are.static intNode. getTotalHeight(Node r, int l)Recursively finds the total number of levels there are.voidNodePlace. place(Node r)The function to call to postion the tree that starts at Node rvoidPlaceNode1. place(Node r)Call this function to have each node in the tree starting at 'r' placed in a visual (not logical, they already are) tree position.voidPlaceNode2. place(Node r)The Funtion to call to have the nodes arranged.voidEdge. setSource(Node v)Set the value of source.voidEdge. setTarget(Node v)Set the value of target.Constructors in org.processmining.prediction.NewTreeVisualizer with parameters of type Node Constructor Description MyTreeVisualizer(TreeDisplayListener tdl, Node n, NodePlace p)Constructs Displayer with the specified Node as the top of the tree, and uses the NodePlacer to place the Nodes.
-