public interface IReflector
Modifier and Type | Method and Description |
---|---|
<E> E |
execute(java.lang.ClassLoader classLoader,
java.lang.Object target,
java.lang.Object[]... params)
Execute the reflector chain
|
<E> E |
execute(java.lang.ClassLoader classLoader,
java.lang.Object target,
OperationParams params)
Execute the reflector chain
|
<E> E execute(java.lang.ClassLoader classLoader, java.lang.Object target, java.lang.Object[]... params) throws ReflectorException
classLoader
- required - classloader referenced to load classestarget
- The steps start executing on this object. Null if the first step is loadClass or staticMethodparams
- parameters to be passed to the stepsReflectorException
<E> E execute(java.lang.ClassLoader classLoader, java.lang.Object target, OperationParams params) throws ReflectorException
classLoader
- required - classloader referenced to load classestarget
- The steps start executing on this object. Null if first step is loadClass or staticMethodparams
- parameters to be passed to the stepsReflectorException