Class Tree
- java.lang.Object
-
- de.uka.ipd.sdq.tcfmoop.outputtree.Node
-
- de.uka.ipd.sdq.tcfmoop.outputtree.Tree
-
public class Tree extends Node
Represents a Tree data structure.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.uka.ipd.sdq.tcfmoop.outputtree.Node
Node.NodeType
-
-
Constructor Summary
Constructors Constructor Description Tree(String rootElementValue, Node.NodeType type)
Creates a new tree
-
Method Summary
-
Methods inherited from class de.uka.ipd.sdq.tcfmoop.outputtree.Node
addChild, attachSubtree, clearChildren, getChildren, getParent, getType, getValue, hasChildren, isRoot, subTreeToString, toString, updateValue
-
-
-
-
Constructor Detail
-
Tree
public Tree(String rootElementValue, Node.NodeType type)
Creates a new tree- Parameters:
rootElementValue
- information stored in the root Nodetype
- type of the root Node.
-
-