Package org.bee.tl.core

Examples of org.bee.tl.core.GroupTemplate


    public static String viewExtension = ".html";
    public static GroupTemplate gt = null;

    public BeetlRenderFactory(boolean isLocal) {
        File file = new File(PathKit.getWebRootPath() + Const.BEETL_ROOT_DIR);
        gt = new GroupTemplate(file);
        if (isLocal){
            gt.enableChecker(2);
        } else {
            gt.enableChecker(0);
        }
View Full Code Here

TOP

Related Classes of org.bee.tl.core.GroupTemplate

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.