Package info.bliki.wiki.template.expr

Examples of info.bliki.wiki.template.expr.Parser


   * @param expression
   * @return
   * @throws SyntaxError
   */
  public ASTNode parse(String expression) {
    Parser p = new Parser();
    fNode = p.parse(expression);
    if (fNode instanceof FunctionNode) {
      fNode = optimizeFunction((FunctionNode) fNode);
    }
    return fNode;
  }
View Full Code Here


   * @param expression
   * @return
   * @throws SyntaxError
   */
  public double evaluate(String expression) {
    Parser p = new Parser();
    fNode = p.parse(expression);
    if (fNode instanceof FunctionNode) {
      fNode = optimizeFunction((FunctionNode) fNode);
    }
    return evaluateNode(fNode);
  }
View Full Code Here

TOP

Related Classes of info.bliki.wiki.template.expr.Parser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.