Package models

Examples of models.ErrorModel


import play.mvc.Controller;

public class Errors extends Controller {

    public static void index() {
        ErrorModel model = new ErrorModel();
        model.getMember().setName(flash.get("model.member.name"));
        render("Application/errors.html", model);
    }
View Full Code Here


import yalp.mvc.Controller;

public class Errors extends Controller {

    public static void index() {
        ErrorModel model = new ErrorModel();
        model.getMember().setName(flash.get("model.member.name"));
        render("Application/errors.html", model);
    }
View Full Code Here

TOP

Related Classes of models.ErrorModel

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.