Obtain the value of the given property on the given object using the given context. @param context The EL context for this evaluation @param base The base object on which the property is to be found @param property The property whose value is to be returned @return the value of the provided p
(ELContext context, Object base, Object property)
| 51 | * @throws ELException Wraps any exception throw whilst resolving the property |
| 52 | */ |
| 53 | public abstract Object getValue(ELContext context, Object base, Object property); |
| 54 | |
| 55 | /** |
| 56 | * Invokes a method on the given object. |