Interface TinyProtocolReflection.MethodInvoker
-
- Enclosing class:
- TinyProtocolReflection
public static interface TinyProtocolReflection.MethodInvokerAn interface for invoking a specific method.
-
-
Method Summary
Modifier and Type Method Description java.lang.Objectinvoke(java.lang.Object target, java.lang.Object... arguments)Invoke a method on a specific target object.
-
-
-
Method Detail
-
invoke
java.lang.Object invoke(java.lang.Object target, java.lang.Object... arguments)Invoke a method on a specific target object.- Parameters:
target- - the target object, or NULL for a static method.arguments- - the arguments to pass to the method.- Returns:
- The return value, or NULL if is void.
-
-