Package httl.spi

Examples of httl.spi.Parser


  public String getEngineVersion() {
    return engine.getVersion();
  }

  public String getLanguageName() {
    Parser parser = engine.getProperty("parser", Parser.class);
    if (parser != null) {
      String name = parser.getClass().getSimpleName();
      String suffix = Parser.class.getSimpleName();
      if (name.endsWith(suffix)) {
        name = name.substring(0, name.length() - suffix.length());
      }
      return "httl-" + name.toLowerCase();
View Full Code Here

TOP

Related Classes of httl.spi.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.