* @return The root node in a tree of expression nodes. Call <tt>evaluate()</tt> on this root
* node to evaluate the entire tree.
*/
public ExpressionNode parseExpression(String expr) {
if (operandFactory == null) {
operandFactory = new SimpleOperandFactory();
}
if (operations == null) {
operations = new SimpleOperandOperations();
}