Class UIComponentTagBase
- java.lang.Object
-
- javax.faces.webapp.UIComponentTagBase
-
- All Implemented Interfaces:
javax.servlet.jsp.tagext.JspTag
- Direct Known Subclasses:
UIComponentClassicTagBase
public abstract class UIComponentTagBase extends java.lang.Object implements javax.servlet.jsp.tagext.JspTagUIComponentTagBaseis the base class for all JSP tags that correspond to aUIComponentinstance in the view. This base class allows a single view to be described in a JSP page consisting of bothUIComponentELTagandUIComponentTaginstances.
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.util.logging.Loggerlog
-
Constructor Summary
Constructors Constructor Description UIComponentTagBase()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract voidaddChild(UIComponent child)Add the component identifier of the specifiedUIComponentto the list of component identifiers created or located by nestedUIComponentTags processing this request.protected abstract voidaddFacet(java.lang.String name)Add the facet name of the specified facet to the list of facet names created or located by nestedUIComponentTags processing this request.abstract UIComponentgetComponentInstance()Return theUIComponentinstance that is associated with this tag instance.abstract java.lang.StringgetComponentType()Return the component type for the component that is or will be bound to this tag.abstract booleangetCreated()Returntrueif we dynamically created a new component instance during execution of this tag.protected javax.el.ELContextgetELContext()Return theELContextfor theFacesContextfor this request.protected abstract FacesContextgetFacesContext()Return theFacesContextinstance for the current request.protected abstract intgetIndexOfNextChildTag()Return the index of the next child to be added as a child of this tag.abstract java.lang.StringgetRendererType()Return therendererTypeproperty that selects theRendererto be used for encoding this component, ornullto ask the component to render itself directly.abstract voidsetId(java.lang.String id)Set the component identifier for the component corresponding to this tag instance.
-
-
-
Method Detail
-
getFacesContext
protected abstract FacesContext getFacesContext()
Return the
FacesContextinstance for the current request. This value will be non-nullonly from the beginning ofdoStartTag()through the end ofdoEndTag()for each tag instance.
-
getELContext
protected javax.el.ELContext getELContext()
Return the
ELContextfor theFacesContextfor this request.This is a convenience for
getFacesContext().getELContext().
-
addChild
protected abstract void addChild(UIComponent child)
Add the component identifier of the specified
UIComponentto the list of component identifiers created or located by nestedUIComponentTags processing this request.- Parameters:
child- New child whose identifier should be added
-
addFacet
protected abstract void addFacet(java.lang.String name)
Add the facet name of the specified facet to the list of facet names created or located by nested
UIComponentTags processing this request.- Parameters:
name- Facet name to be added
-
setId
public abstract void setId(java.lang.String id)
Set the component identifier for the component corresponding to this tag instance. If the argument begins with
UIViewRoot.UNIQUE_ID_PREFIXthrow anIllegalArgumentException- Parameters:
id- The new component identifier. This may not start withUIViewRoot.UNIQUE_ID_PREFIX.- Throws:
java.lang.IllegalArgumentException- if the argument is non-nulland starts withUIViewRoot.UNIQUE_ID_PREFIX.
-
getComponentType
public abstract java.lang.String getComponentType()
Return the component type for the component that is or will be bound to this tag. This value can be passed to
Application.createComponent(java.lang.String)to create theUIComponentinstance for this tag. Subclasses must override this method to return the appropriate value.
-
getRendererType
public abstract java.lang.String getRendererType()
Return the
rendererTypeproperty that selects theRendererto be used for encoding this component, ornullto ask the component to render itself directly. Subclasses must override this method to return the appropriate value.
-
getComponentInstance
public abstract UIComponent getComponentInstance()
Return the
UIComponentinstance that is associated with this tag instance. This method is designed to be used by tags nested within this tag, and only returns useful results between the execution ofdoStartTag()anddoEndTag()on this tag instance.
-
getCreated
public abstract boolean getCreated()
Return
trueif we dynamically created a new component instance during execution of this tag. This method is designed to be used by tags nested within this tag, and only returns useful results between the execution ofdoStartTag()anddoEndTag()on this tag instance.
-
getIndexOfNextChildTag
protected abstract int getIndexOfNextChildTag()
Return the index of the next child to be added as a child of this tag. The default implementation maintains a list of created components and returns the size of the list.
-
-