Package org.mojavemvc.views

Examples of org.mojavemvc.views.FTL


    public static final String FTL_ERROR_FILE = "mojavemvc-internal-ftl-error-file";

    public View handleError(Throwable e, AppProperties properties) {

        String errorFile = (String)properties.getProperty(FTL_ERROR_FILE);
        return new FTL(errorFile);
    }
View Full Code Here


public class FTLController {

    @Action("basic/:val")
    public FTL basic(@Param("val") String val) {
       
        return new FTL("basic.ftl").withAttribute("val", val);
    }
View Full Code Here

TOP

Related Classes of org.mojavemvc.views.FTL

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.