Package de.intarsys.tools.reflect
Interface IBasicInvocationSupport
-
public interface IBasicInvocationSupportAn object supporting reflective method callsThis is a basic support interface used in
ObjectToolsto support reflective operations. You MUST NOT implement this interface in terms ofObjectToolsmethods!
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectbasicInvoke(java.lang.String name, java.lang.Object... values)Make a reflective call toname.
-
-
-
Method Detail
-
basicInvoke
java.lang.Object basicInvoke(java.lang.String name, java.lang.Object... values) throws MethodExceptionMake 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
-
-