getValue
public Object getValue(ELContext context,
Object base,
Object property)
Attempts to resolve the given property object on the given base object. If this resolver
handles the given (base, property) pair, the propertyResolved property of the ELContext
object must be set to true by the resolver, before returning. If this property is not true
after this method is called, the caller should ignore the return value.
- Overrides:
getValue in class VariableContainerELResolver
- Parameters:
context - The context of this evaluation.
base - The base object whose property value is to be returned, or null to resolve a
top-level variable.
property - The property or variable to be resolved.
- Returns:
- If the propertyResolved property of ELContext was set to true, then the result of the
variable or property resolution; otherwise undefined.