Package net.asfun.jangod.template

Examples of net.asfun.jangod.template.TemplateEngine


  @Override
  public void afterPropertiesSet() throws Exception {
    if ( configurationFile != null ) {
      Application application = new Application(configurationFile);
      engine = new TemplateEngine(application);
    } else {
      engine = new TemplateEngine();
    }
    if ( root != null ) {
      engine.getConfiguration().setWorkspace(root);
    }
  }
View Full Code Here

TOP

Related Classes of net.asfun.jangod.template.TemplateEngine

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.