Package de.intarsys.tools.reflect
Interface IInvocationHandler
-
public interface IInvocationHandlerAn object that supports handling reflective calls to the methods of a delegate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectinvoke(java.lang.Object receiver, java.lang.String name, IArgs args)Make a reflective call to the methodnamewithinreceiver
-
-
-
Method Detail
-
invoke
java.lang.Object invoke(java.lang.Object receiver, java.lang.String name, IArgs args) throws MethodExceptionMake a reflective call to the methodnamewithinreceiver- Parameters:
receiver- The object hosting the method.name- The name of the method to call.args- The arguments for the invocation.- Returns:
- The result of the invocation.
- Throws:
MethodException
-
-