Uses of Class
net.sf.cglib.proxy.MethodProxy
-
Packages that use MethodProxy Package Description net.sf.cglib.proxy net.sf.cglib.samples -
-
Uses of MethodProxy in net.sf.cglib.proxy
Methods in net.sf.cglib.proxy that return MethodProxy Modifier and Type Method Description static MethodProxy
MethodProxy. create(java.lang.Class c1, java.lang.Class c2, java.lang.String desc, java.lang.String name1, java.lang.String name2)
For internal use byEnhancer
only; see theFastMethod
class for similar functionality.static MethodProxy
MethodProxy. find(java.lang.Class type, Signature sig)
Return theMethodProxy
used when intercepting the method matching the given signature.Methods in net.sf.cglib.proxy with parameters of type MethodProxy Modifier and Type Method Description java.lang.Object
MethodInterceptor. intercept(java.lang.Object obj, java.lang.reflect.Method method, java.lang.Object[] args, MethodProxy proxy)
All generated proxied methods call this method instead of the original method. -
Uses of MethodProxy in net.sf.cglib.samples
Methods in net.sf.cglib.samples with parameters of type MethodProxy Modifier and Type Method Description java.lang.Object
Beans. intercept(java.lang.Object obj, java.lang.reflect.Method method, java.lang.Object[] args, MethodProxy proxy)
java.lang.Object
Trace. intercept(java.lang.Object obj, java.lang.reflect.Method method, java.lang.Object[] args, MethodProxy proxy)
-