| javassist.util.proxy.MethodHandler
invoke | Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwable(Code) | | Is called when a method is invoked on a proxy instance associated
with this handler. This method must process that method invocation.
Parameters: self - the proxy instance. Parameters: thisMethod - the overridden method declared in the superclass or interface. Parameters: proceed - the forwarder method for invoking the overridden method. It is null if the overridden mehtod isabstract or declared in the interface. Parameters: args - an array of objects containing the values ofthe arguments passed in the method invocationon the proxy instance. If a parameter type isa primitive type, the type of the array elementis a wrapper class. the resulting value of the method invocation. throws: Throwable - if the method invocation fails. |
|
|