Package net.hasor.mvc

Examples of net.hasor.mvc.Param


    /**/
    protected Object resolveParam(Class<?> paramClass, Annotation pAnno, Call call) {
        if (pAnno instanceof Param == false) {
            return null;
        }
        Param param = (Param) pAnno;
        String paramName = param.value();
        return call.getParam(paramName);
    }
View Full Code Here

TOP

Related Classes of net.hasor.mvc.Param

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.