Uses of Package
net.sf.cglib.proxy
Packages that use net.sf.cglib.proxy
-
Classes in net.sf.cglib.proxy used by net.sf.cglib.proxyClassDescriptionAll callback interfaces used by
Enhancer
extend this interface.Map methods of subclasses generated byEnhancer
to a particular callback.The idea of the class is to cache relevant java.lang.reflect instances so proxy-class can be instantiated faster that when usingReflectUtils.newInstance(Class, Class[], Object[])
andEnhancer.setThreadCallbacks(Class, Callback[])
Internal interface, only public due to ClassLoader issues.InvocationHandler
replacement (unavailable under JDK 1.2).Classes generated byEnhancer
pass this object to the registeredMethodInterceptor
objects when an intercepted method is invoked.Mixin
allows multiple objects to be combined into a single larger object.Methods using thisEnhancer
callback will delegate directly to the default (super) implementation in the base class.This class is meant to be used as replacement forjava.lang.reflect.Proxy
under JDK 1.2. -
Classes in net.sf.cglib.proxy used by net.sf.cglib.samplesClassDescriptionAll callback interfaces used by
Enhancer
extend this interface.General-purposeEnhancer
callback which provides for "around advice".Classes generated byEnhancer
pass this object to the registeredMethodInterceptor
objects when an intercepted method is invoked.