public class CompositeELResolver extends ELResolver
RESOLVABLE_AT_DESIGN_TIME, TYPE| Constructor and Description |
|---|
CompositeELResolver() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(ELResolver elResolver)
Adds the specified resolver to the list.
|
java.lang.Class |
getCommonPropertyType(ELContext context,
java.lang.Object base)
Returns the most general class of properties in the base object.
|
java.util.Iterator |
getFeatureDescriptors(ELContext context,
java.lang.Object base)
Returns metadata about the variables or properties within the
specified base object.
|
java.lang.Class |
getType(ELContext context,
java.lang.Object base,
java.lang.Object property)
Returns the class of the specified property of the base object.
|
java.lang.Object |
getValue(ELContext context,
java.lang.Object base,
java.lang.Object property)
Resolves the specified property of the base object.
|
boolean |
isReadOnly(ELContext context,
java.lang.Object base,
java.lang.Object property)
Indicates whether the specified property of the base object is
read-only.
|
void |
setValue(ELContext context,
java.lang.Object base,
java.lang.Object property,
java.lang.Object value)
Sets the value of the specified property of the base object.
|
public void add(ELResolver elResolver)
public java.lang.Object getValue(ELContext context, java.lang.Object base, java.lang.Object property) throws java.lang.NullPointerException, PropertyNotFoundException, ELException
ELResolvergetValue in class ELResolvercontext - the evaluation contextbase - the target of the operationproperty - the property of the base objectjava.lang.NullPointerExceptionPropertyNotFoundExceptionELExceptionpublic void setValue(ELContext context, java.lang.Object base, java.lang.Object property, java.lang.Object value) throws java.lang.NullPointerException, PropertyNotFoundException, PropertyNotWritableException, ELException
ELResolversetValue in class ELResolvercontext - the evaluation contextbase - the target of the operationproperty - the property of the base objectvalue - the new value of the propertyPropertyNotWritableException - if the property is read-onlyjava.lang.NullPointerExceptionPropertyNotFoundExceptionELExceptionpublic boolean isReadOnly(ELContext context, java.lang.Object base, java.lang.Object property) throws java.lang.NullPointerException, PropertyNotFoundException, ELException
ELResolverisReadOnly in class ELResolvercontext - the evaluation contextbase - the target of the operationproperty - the property of the base objectjava.lang.NullPointerExceptionPropertyNotFoundExceptionELExceptionpublic java.lang.Class getType(ELContext context, java.lang.Object base, java.lang.Object property) throws java.lang.NullPointerException, PropertyNotFoundException, ELException
ELResolvergetType in class ELResolvercontext - the evaluation contextbase - the target of the operationproperty - the property of the base objectjava.lang.NullPointerExceptionPropertyNotFoundExceptionELExceptionpublic java.util.Iterator getFeatureDescriptors(ELContext context, java.lang.Object base)
ELResolvergetFeatureDescriptors in class ELResolvercontext - the evaluation contextbase - the target of the operationpublic java.lang.Class getCommonPropertyType(ELContext context, java.lang.Object base)
ELResolvergetCommonPropertyType in class ELResolvercontext - the evaluation contextbase - the target of the operation