- test - package test
-
- TestTree - Class in test
-
This class tests the following functionalities :
1) The construction of the tree from an input text file
2) The toString methods of all tree nodes for formula display
3) The calculation methods of all tree nodes for calculating the formula
- TestTree() - Constructor for class test.TestTree
-
- toString() - Method in class data.Addition
-
- toString() - Method in class data.Constant
-
- toString() - Method in class data.Multiplication
-
- toString() - Method in class data.Subtraction
-
- toString() - Method in class data.Variable
-
- Tree - Interface in data
-
Binary tree recursive defintion interface.
- TreeBuilder - Class in process
-
This class builds the binary tree based on an input text file.
- TreeBuilder(String) - Constructor for class process.TreeBuilder
-
The constructor ensures the preparation work for tree building.
- TreeNodeFactory - Class in process
-
This utility class allows the creation of tree node of any concrete type.
- TreeNodeFactory() - Constructor for class process.TreeNodeFactory
-