|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface MethodAccessor
This interface defines methods for calling methods in a target object. Methods are broken up into static and instance methods for convenience. indexes into the target object, which must be an array.
| Method Summary | |
|---|---|
Object |
callMethod(Map<String,Object> context,
Object target,
String methodName,
Object[] args)
Calls the method named with the arguments given. |
Object |
callStaticMethod(Map<String,Object> context,
Class<?> targetClass,
String methodName,
Object[] args)
Calls the static method named with the arguments given on the class given. |
| Method Detail |
|---|
Object callStaticMethod(Map<String,Object> context,
Class<?> targetClass,
String methodName,
Object[] args)
throws OgnlException
context - expression context in which the method should be calledtargetClass - the object in which the method existsmethodName - the name of the methodargs - the arguments to the method
OgnlException - if there is an error calling the method
Object callMethod(Map<String,Object> context,
Object target,
String methodName,
Object[] args)
throws OgnlException
context - expression context in which the method should be calledtarget - the object in which the method existsmethodName - the name of the methodargs - the arguments to the method
OgnlException - if there is an error calling the method
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||