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
ELResolver
getValue
in class ELResolver
context
- the evaluation contextbase
- the target of the operationproperty
- the property of the base objectjava.lang.NullPointerException
PropertyNotFoundException
ELException
public void setValue(ELContext context, java.lang.Object base, java.lang.Object property, java.lang.Object value) throws java.lang.NullPointerException, PropertyNotFoundException, PropertyNotWritableException, ELException
ELResolver
setValue
in class ELResolver
context
- 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.NullPointerException
PropertyNotFoundException
ELException
public boolean isReadOnly(ELContext context, java.lang.Object base, java.lang.Object property) throws java.lang.NullPointerException, PropertyNotFoundException, ELException
ELResolver
isReadOnly
in class ELResolver
context
- the evaluation contextbase
- the target of the operationproperty
- the property of the base objectjava.lang.NullPointerException
PropertyNotFoundException
ELException
public java.lang.Class getType(ELContext context, java.lang.Object base, java.lang.Object property) throws java.lang.NullPointerException, PropertyNotFoundException, ELException
ELResolver
getType
in class ELResolver
context
- the evaluation contextbase
- the target of the operationproperty
- the property of the base objectjava.lang.NullPointerException
PropertyNotFoundException
ELException
public java.util.Iterator getFeatureDescriptors(ELContext context, java.lang.Object base)
ELResolver
getFeatureDescriptors
in class ELResolver
context
- the evaluation contextbase
- the target of the operationpublic java.lang.Class getCommonPropertyType(ELContext context, java.lang.Object base)
ELResolver
getCommonPropertyType
in class ELResolver
context
- the evaluation contextbase
- the target of the operation