Package org.mojavemvc.tests.views

Examples of org.mojavemvc.tests.views.HTMLPage


    @InterceptedBy(Interceptor1.class)
    private static class TestInvalidController2 {

        @Action("test")
        public View testAction() {
            return new HTMLPage();
        }
View Full Code Here


    @StatelessController("child")
    private static class TestChildClass extends TestAbstractController {

        @DefaultAction
        public View defaultAction() {
            return new HTMLPage();
        }
View Full Code Here

            return new HTMLPage();
        }

        @Action("test")
        public View testAction() {
            return new HTMLPage();
        }
View Full Code Here

        private void init() {
        }

        @DefaultAction
        public View defaultAction() {
            return new HTMLPage();
        }
View Full Code Here

            return new HTMLPage();
        }

        @Action("test1")
        public View testAction() {
            return new HTMLPage();
        }
View Full Code Here

        public void mockMethod() {
        }

        @Action("with-param")
        public View withParamAction() {
            return new HTMLPage();
        }
View Full Code Here

            return new HTMLPage();
        }

        @Action("another-param")
        public View anotherParamAction() {
            return new HTMLPage();
        }
View Full Code Here

            return new HTMLPage();
        }

        @Action("some-service")
        public View someServiceAction() {
            return new HTMLPage();
        }
View Full Code Here

            return new HTMLPage();
        }

        @Action("test-annotation")
        public View doAnnotationTest() {
            return new HTMLPage();
        }
View Full Code Here

    @TRACEAction
    @InterceptedBy(Interceptor1b.class)
    public View someAction() {

        invocationList.add("traceAction");
        return new HTMLPage()
            .withH2Content("traceAction");
    }
View Full Code Here

TOP

Related Classes of org.mojavemvc.tests.views.HTMLPage

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.