Class ImplicitObject
- java.lang.Object
- 
- org.apache.myfaces.el.resolver.implicitobject.ImplicitObject
 
- 
- Direct Known Subclasses:
- ApplicationImplicitObject,- ApplicationScopeImplicitObject,- ComponentImplicitObject,- CompositeComponentImplicitObject,- CookieImplicitObject,- FacesContextImplicitObject,- FlowScopeImplicitObject,- HeaderImplicitObject,- HeaderValuesImplicitObject,- InitParamImplicitObject,- ParamImplicitObject,- ParamValuesImplicitObject,- RequestImplicitObject,- RequestScopeImplicitObject,- ResourceImplicitObject,- SessionImplicitObject,- SessionScopeImplicitObject,- ViewImplicitObject,- ViewScopeImplicitObject
 
 public abstract class ImplicitObject extends Object Implementors of this class encapsulate the information needed to resolve the implicit object.- Author:
- Stan Silvert
 
- 
- 
Constructor SummaryConstructors Constructor Description ImplicitObject()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected ExternalContextexternalContext(jakarta.el.ELContext context)protected FacesContextfacesContext(jakarta.el.ELContext context)abstract FeatureDescriptorgetDescriptor()abstract StringgetName()Returns an interned String representing the name of the implicit object.abstract Class<?>getType()Returns the most general type allowed for a future call to setValue()abstract ObjectgetValue(jakarta.el.ELContext context)protected FeatureDescriptormakeDescriptor(String name, String description, Class<?> elResolverType)
 
- 
- 
- 
Method Detail- 
getValuepublic abstract Object getValue(jakarta.el.ELContext context) 
 - 
getDescriptorpublic abstract FeatureDescriptor getDescriptor() 
 - 
getNamepublic abstract String getName() Returns an interned String representing the name of the implicit object.
 - 
getTypepublic abstract Class<?> getType() Returns the most general type allowed for a future call to setValue()
 - 
makeDescriptorprotected FeatureDescriptor makeDescriptor(String name, String description, Class<?> elResolverType) 
 - 
facesContextprotected FacesContext facesContext(jakarta.el.ELContext context) 
 - 
externalContextprotected ExternalContext externalContext(jakarta.el.ELContext context) 
 
- 
 
-