Uses of Class
micycle.trapmap.graph.Node
-
Packages that use Node Package Description micycle.trapmap.graph Package -
-
Uses of Node in micycle.trapmap.graph
Subclasses of Node in micycle.trapmap.graph Modifier and Type Class Description class
Leaf
Leafs model trapezoids at the lowest level of the History Graph.class
XNode
An X node stores a segment end point.class
YNode
A y-node stores a segment.Methods in micycle.trapmap.graph that return Node Modifier and Type Method Description Node
Node. getLeftChildNode()
Get the left child node of this NodeNode
Node. getParentNode()
Get the last parent node assigned to this Node.Node
Node. getRightChildNode()
Get the right child node of this NodeMethods in micycle.trapmap.graph that return types with arguments of type Node Modifier and Type Method Description List<Node>
Node. getParentNodes()
This is an updated method which returns the ArrayList of parents Nodes.Methods in micycle.trapmap.graph with parameters of type Node Modifier and Type Method Description void
Node. setLeftChildNode(Node newLChild)
Sets the left child node.void
Node. setParentNode(Node newParent)
Add a parent to the list for this Nodevoid
Node. setRightChildNode(Node newRChild)
Sets the right child node.
-