Set 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 set @param value The value to set the propert
(ELContext context, Object base, Object property, Object value)
| 104 | * @throws ELException Wraps any exception throw whilst resolving the property |
| 105 | */ |
| 106 | public abstract void setValue(ELContext context, Object base, Object property, Object value); |
| 107 | |
| 108 | /** |
| 109 | * Determine if the given property on the given object is read-only using the given context. |