Package cn.webwheel.results

Examples of cn.webwheel.results.SimpleResultInterpreter


     */
    protected void init() throws ServletException {

        File root = new File(servletContext.getRealPath("/"));
        interpret(TemplateResult.class).by(new TemplateResultInterpreter(root, null));
        interpret(SimpleResult.class).by(new SimpleResultInterpreter());

        set(String.class).by(new StringSetter());
        set(String[].class).by(new StringArraySetter());

        set(boolean.class).by(new BooleanSetter(Boolean.FALSE));
View Full Code Here

TOP

Related Classes of cn.webwheel.results.SimpleResultInterpreter

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.