Package info.bliki.wiki.template.expr.ast

Examples of info.bliki.wiki.template.expr.ast.FloatNode


    return new PostfixOperator(operatorStr, headStr, precedence);
  }

  @Override
  public ASTNode createDouble(final String doubleString) {
    return new FloatNode(doubleString);
  }
View Full Code Here


        return new PostfixOperator(operatorStr, headStr, precedence);
    }

    @Override
    public ASTNode createDouble(final String doubleString) {
        return new FloatNode(doubleString);
    }
View Full Code Here

  static public PostfixOperator createPostfixOperator(final String operatorStr, final String headStr, final int precedence) {
    return new PostfixOperator(operatorStr, headStr, precedence);
  }

  public ASTNode createDouble(final String doubleString) {
    return new FloatNode(doubleString);
  }
View Full Code Here

TOP

Related Classes of info.bliki.wiki.template.expr.ast.FloatNode

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.