Package de.intarsys.tools.reflect
Interface IBasicInvocationSupport
public interface IBasicInvocationSupport
An object supporting reflective method calls
This is a basic support interface used in ObjectTools
to support
reflective operations. You MUST NOT implement this interface in terms of
ObjectTools
methods!
-
Method Summary
Modifier and TypeMethodDescriptionbasicInvoke
(String name, Object... values) Make a reflective call toname
.
-
Method Details
-
basicInvoke
Make a reflective call toname
.- Parameters:
name
- The name of the method to call.values
- The arguments for the invocation.- Returns:
- The result of the invocation.
- Throws:
MethodException
-