Package com.github.mustachejava.resolver

Examples of com.github.mustachejava.resolver.DefaultResolver


  private final MustacheResolver mustacheResolver;

  protected ListeningExecutorService les;

  public DefaultMustacheFactory() {
    this.mustacheResolver = new DefaultResolver();
  }
View Full Code Here


   * Use the classpath to resolve mustache templates.
   *
   * @param resourceRoot
   */
  public DefaultMustacheFactory(String resourceRoot) {
    this.mustacheResolver = new DefaultResolver(resourceRoot);
  }
View Full Code Here

   * Use the file system to resolve mustache templates.
   *
   * @param fileRoot
   */
  public DefaultMustacheFactory(File fileRoot) {
    this.mustacheResolver = new DefaultResolver(fileRoot);
  }
View Full Code Here

TOP

Related Classes of com.github.mustachejava.resolver.DefaultResolver

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.