Package models.demo

Examples of models.demo.Foo


        Exception result = new Exception("404.xml");
        render("errors/404.xml", result);
    }

    public static void expression() {
        Foo foo = new Foo();
        render(foo);
    }
View Full Code Here


        String who = "Rythm";
        render(who);
    }

    public static void testExtendsWithOutParams() {
        Foo foo = new Foo("test");
        render(foo);
    }
View Full Code Here

        int[] vals = {1, 2, 3};
        render(vals);
    }

    public static void i32() {
        Foo foo = new Foo();
        render(foo);
    }
View Full Code Here

    public static void i44() {
        render();
    }

    public static void groovy() {
        Foo foo = new Foo();
        render(foo);
    }
View Full Code Here

        Foo foo = new Foo();
        render(foo);
    }

    public static void p_i12() {
        Foo foo = new Foo("Hello");
        render(foo);
    }
View Full Code Here

    public static void i94() {
        render();
    }

    public static void i95() {
        Foo foo = new Foo("bar");
        render(foo);
    }
View Full Code Here

TOP

Related Classes of models.demo.Foo

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.