Package mfinder.impl

Examples of mfinder.impl.ResultTypeProxy


        if (target instanceof InterceptorProxy) {
            InterceptorProxy ip = (InterceptorProxy) target;
            return "interceptor[\"" + ip.getName() + "\"] - " + ip.getMethodInfo();
        }
        if (target instanceof ResultTypeProxy) {
            ResultTypeProxy rp = (ResultTypeProxy) target;
            return "result[\"" + rp.getType() + "\"] - " + rp.getMethodInfo();
        }
        return target.toString();
    }
View Full Code Here

TOP

Related Classes of mfinder.impl.ResultTypeProxy

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.