Invokes a method on the given object. @param context The EL context for this evaluation @param base The base object on which the method is to be found @param method The method to invoke @param paramTypes The types of the parameters of the method to invoke @param params The paramete
(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
| 66 | * @since EL 2.2 |
| 67 | */ |
| 68 | public Object invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params) { |
| 69 | return null; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Obtain the most generally acceptable type that may be used to set the given property on the given object using |