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

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


    return new FractionNode(numerator, denominator);
  }

  @Override
  public SymbolNode createSymbol(final String symbolName) {
    return new SymbolNode(symbolName);
  }
View Full Code Here


        return new FractionNode(numerator, denominator);
    }

    @Override
    public SymbolNode createSymbol(final String symbolName) {
        return new SymbolNode(symbolName);
    }
View Full Code Here

  public StringNode createString(final StringBuffer buffer) {
    return new StringNode(buffer.toString());
  }

  public SymbolNode createSymbol(final String symbolName) {
    return new SymbolNode(symbolName);
  }
View Full Code Here

TOP

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

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.