This method of the Delegate class invokes the delegate's target method on the delegate's target object with the given parameters. The parameters must be packaged as an Object array according to the rules of Java Reflection.
protected final Object invokeHelper(Object[] args) throws Throwable;
args | The target method invocation. |
Returns an object that must be unwrapped or typecast to produce a correctly typed value. If the delegate type is void, this method returns null.