Package org.apache.myfaces.el.resolver
Class CompositeComponentELResolver
- java.lang.Object
-
- javax.el.ELResolver
-
- org.apache.myfaces.el.resolver.CompositeComponentELResolver
-
public final class CompositeComponentELResolver extends javax.el.ELResolver
Composite component attribute EL resolver. See JSF spec, section 5.6.2.2.
-
-
Constructor Summary
Constructors Constructor Description CompositeComponentELResolver(MyfacesConfig myfacesConfig)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>
getCommonPropertyType(javax.el.ELContext context, Object base)
Iterator<FeatureDescriptor>
getFeatureDescriptors(javax.el.ELContext context, Object base)
Class<?>
getType(javax.el.ELContext context, Object base, Object property)
Object
getValue(javax.el.ELContext context, Object base, Object property)
boolean
isReadOnly(javax.el.ELContext context, Object base, Object property)
void
setValue(javax.el.ELContext context, Object base, Object property, Object value)
-
-
-
Constructor Detail
-
CompositeComponentELResolver
public CompositeComponentELResolver(MyfacesConfig myfacesConfig)
-
-
Method Detail
-
getCommonPropertyType
public Class<?> getCommonPropertyType(javax.el.ELContext context, Object base)
- Specified by:
getCommonPropertyType
in classjavax.el.ELResolver
-
getFeatureDescriptors
public Iterator<FeatureDescriptor> getFeatureDescriptors(javax.el.ELContext context, Object base)
- Specified by:
getFeatureDescriptors
in classjavax.el.ELResolver
-
getType
public Class<?> getType(javax.el.ELContext context, Object base, Object property)
- Specified by:
getType
in classjavax.el.ELResolver
-
getValue
public Object getValue(javax.el.ELContext context, Object base, Object property)
- Specified by:
getValue
in classjavax.el.ELResolver
-
isReadOnly
public boolean isReadOnly(javax.el.ELContext context, Object base, Object property)
- Specified by:
isReadOnly
in classjavax.el.ELResolver
-
-