Package mfinder.impl

Examples of mfinder.impl.ActionProxy


     */
    public String getTargetInfo() {
        if (target == null)
            return null;
        if (target instanceof ActionProxy) {
            ActionProxy ap = (ActionProxy) target;
            return "action[\"" + ap.getPath() + "\"] - " + ap.getMethodInfo();
        }
        if (target instanceof InterceptorProxy) {
            InterceptorProxy ip = (InterceptorProxy) target;
            return "interceptor[\"" + ip.getName() + "\"] - " + ip.getMethodInfo();
        }
View Full Code Here

TOP

Related Classes of mfinder.impl.ActionProxy

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.