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

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


  public FractionNode createFraction(final IntegerNode numerator, final IntegerNode denominator) {
    return new FractionNode(numerator, denominator);
  }

  public StringNode createString(final StringBuffer buffer) {
    return new StringNode(buffer.toString());
  }
View Full Code Here

TOP

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

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.