Class UIComponentClassicTagBase
- java.lang.Object
-
- javax.faces.webapp.UIComponentTagBase
-
- javax.faces.webapp.UIComponentClassicTagBase
-
- All Implemented Interfaces:
javax.servlet.jsp.tagext.BodyTag,javax.servlet.jsp.tagext.IterationTag,javax.servlet.jsp.tagext.JspIdConsumer,javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.tagext.Tag
- Direct Known Subclasses:
UIComponentELTag,UIComponentTag
public abstract class UIComponentClassicTagBase extends UIComponentTagBase implements javax.servlet.jsp.tagext.JspIdConsumer, javax.servlet.jsp.tagext.BodyTag
UIComponentTagBaseis the base class for all JSP tags that use the "classic" JSP tag interface that correspond to aUIComponentinstance in the view. In Faces 1.2, all component tags areBodyTaginstances to allow for the execution of the page to build the component tree, but not render it. Rendering happens only after the component tree is completely built.UIComponentTagextendsUIComponentClassicTagBaseto add support for properties that conform to the Faces 1.1 EL.UIComponentELTagextendsUIComponentClassicTagBaseclass to add support for properties that conform to the EL API.The default implementation allows the proper interweaving of template text, non-Faces JSP tag output, and Faces component tag output in the same page, as expected by the page author.
The CASE markers in the following example will be cited in the method descriptions of this class.
CASE 1 describes template text and/or non-component custom tag output occurring as the child of a component tag, but before the first component tag child of that component tag.
CASE 2 describes template text and/or non-component custom tag output occurring between two sibling component tags.
CASE 3 describes template text and/or non-component custom tag output occurring as the child content of an <f:verbatim> tag at any point in the page.
CASE 4 describes template text and/or non-component custom tag output occurring between the last child component tag and its enclosing parent component tag's end tag.
<h:panelGrid style="color:red" border="4" columns="2"> CASE 1 <h:outputText value="component 1"/> CASE 2 <h:outputText value="component 2"/> <f:verbatim>CASE 3</f:verbatim> <c:out value="${pageScope.CASE4}" /> </h:panelGrid>The preceding arrangement of faces component tags, must yield markup that will render identically to the following (assuming that
${pageScope.CASE4}evaluates to "CASE 4" without the quotes).<table border="4" style="color:red"> <tbody> <tr><td>CASE 1</td></tr> <tr><td>component 1</td></tr> <tr><td>CASE 2</td> <tr><td>component 2</td></tr> <tr><td>CASE 3</td> <td>CASE 4</td></tr> </tbody> </table>
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.servlet.jsp.tagext.BodyContentbodyContentThebodyContentfor this tag handler.protected javax.servlet.jsp.PageContextpageContextThe JSPPageContextfor the page we are embedded in.protected static java.lang.StringUNIQUE_ID_PREFIXUsed as the prefix for ids.-
Fields inherited from class javax.faces.webapp.UIComponentTagBase
log
-
-
Constructor Summary
Constructors Constructor Description UIComponentClassicTagBase()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidaddChild(UIComponent child)Add the component identifier of the specifiedUIComponentto the list of component identifiers created or located by nestedUIComponentTags processing this request.protected 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.protected voidaddVerbatimAfterComponent(UIComponentClassicTagBase parentTag, UIComponent verbatim, UIComponent component)Add verbatim as a sibling of component in component in the parent's child list.protected voidaddVerbatimBeforeComponent(UIComponentClassicTagBase parentTag, UIComponent verbatim, UIComponent component)Add verbatim as a sibling of component in component in the parent's child list.protected abstract UIComponentcreateComponent(FacesContext context, java.lang.String newId)Create and return a new child component of the type returned by callinggetComponentType().protected UIOutputcreateVerbatimComponent()Use theApplicationinstance to create a new component with the following characteristics.protected UIComponentcreateVerbatimComponentFromBodyContent()Create a transient UIOutput component from the body content, of this tag instance or return null if there is no body content, the body content is whitespace, or the body content is a comment.intdoAfterBody()Perform any processing necessary to handle the content implications of CASE 4 in the class description.intdoEndTag()Perform any processing necessary to handle the content implications of CASE 3 in the class description.voiddoInitBody()Prepare for evaluation of the body.intdoStartTag()Perform any processing necessary to find (or create) theUIComponentinstance in the view corresponding to this tag instance in the page and, if and only if a component was created, insert it into the tree at the proper location as expected by the page author.protected voidencodeBegin()Deprecated.No encoding is done during JSP page execution.protected voidencodeChildren()Deprecated.No encoding is done during JSP page execution.protected voidencodeEnd()Deprecated.No encoding is done during JSP page execution.protected UIComponentfindComponent(FacesContext context)Find and return theUIComponent, from the component tree, that corresponds to this tag handler instance.javax.servlet.jsp.tagext.BodyContentgetBodyContent()UIComponentgetComponentInstance()Return theUIComponentinstance that is associated with this tag instance.booleangetCreated()Returntrueif we dynamically created a new component instance during execution of this tag.protected java.util.List<java.lang.String>getCreatedComponents()Returns theListofUIComponentids created or located by nestedUIComponentTags while processing the current request.protected intgetDoAfterBodyValue()Return the flag value that should be returned from thedoAfterBody()method when it is called.protected intgetDoEndValue()Return the flag value that should be returned from thedoEnd()method when it is called.protected intgetDoStartValue()Return the flag value that should be returned from thedoStart()method when it is called.protected FacesContextgetFacesContext()Return theFacesContextinstance for the current request.protected java.lang.StringgetFacesJspId()If this method has been called before on this tag's useful lifetime (beforerelease()was called), return the previously returned value.protected java.lang.StringgetFacetName()Return the facet name that we should be stored under, if any; otherwise, return null (indicating that we will be a child component).protected java.lang.StringgetId()Return theidvalue assigned by the page author.protected intgetIndexOfNextChildTag()Return the index of the next child to be added as a child of this tag.java.lang.StringgetJspId()javax.servlet.jsp.tagext.TaggetParent()Return theTagthat is the parent of this instance.static UIComponentClassicTagBasegetParentUIComponentClassicTagBase(javax.servlet.jsp.PageContext context)Locate and return the nearest enclosingUIComponentClassicTagBaseif any; otherwise, returnnull.javax.servlet.jsp.JspWritergetPreviousOut()Get theJspWriterfrom ourBodyContent.protected abstract booleanhasBinding()Returntrueif this component has a non-nullbinding attribute.voidrelease()Release any resources allocated during the execution of this tag handler.voidsetBodyContent(javax.servlet.jsp.tagext.BodyContent bodyContent)Set thebodyContentfor this tag handler.voidsetId(java.lang.String id)Set the component identifier for our component.voidsetJspId(java.lang.String id)Defined onJspIdConsumer.voidsetPageContext(javax.servlet.jsp.PageContext pageContext)Set thePageContextof the page containing this tag instance.voidsetParent(javax.servlet.jsp.tagext.Tag parent)Set theTagthat is the parent of this instance.protected abstract voidsetProperties(UIComponent component)Override properties and attributes of the specified component, if the corresponding properties of this tag handler instance were explicitly set.protected voidsetupResponseWriter()Set up theResponseWriterfor the current response, if this has not been done already.-
Methods inherited from class javax.faces.webapp.UIComponentTagBase
getComponentType, getELContext, getRendererType
-
-
-
-
Field Detail
-
UNIQUE_ID_PREFIX
protected static final java.lang.String UNIQUE_ID_PREFIX
Used as the prefix for ids. This is necessary to avoid uniqueness conflicts with the transient verbatim components.- See Also:
- Constant Field Values
-
bodyContent
protected javax.servlet.jsp.tagext.BodyContent bodyContent
The
bodyContentfor this tag handler.
-
pageContext
protected javax.servlet.jsp.PageContext pageContext
The JSP
PageContextfor the page we are embedded in.
-
-
Method Detail
-
getDoStartValue
protected int getDoStartValue() throws javax.servlet.jsp.JspExceptionReturn the flag value that should be returned from the
doStart()method when it is called. Subclasses may override this method to return the appropriate value.- Throws:
javax.servlet.jsp.JspException- to causedoStart()to throw an exception
-
getDoEndValue
protected int getDoEndValue() throws javax.servlet.jsp.JspExceptionReturn the flag value that should be returned from the
doEnd()method when it is called. Subclasses may override this method to return the appropriate value.- Throws:
javax.servlet.jsp.JspException- to causedoEnd()to throw an exception
-
encodeBegin
protected void encodeBegin() throws java.io.IOExceptionDeprecated.No encoding is done during JSP page execution. Encoding is deferred until the page has completed executing to allow the entire tree to be built before any encoding occurs.Delegate to the
encodeBegin()method of our correspondingUIComponent. This method is called fromdoStartTag(). Normally, delegation occurs unconditionally; however, this method is abstracted out so that advanced tags can conditionally perform this call.- Throws:
java.io.IOException- if an input/output error occurs
-
encodeChildren
protected void encodeChildren() throws java.io.IOExceptionDeprecated.No encoding is done during JSP page execution. Encoding is deferred until the page has completed executing to allow the entire tree to be built before any encoding occurs.Delegate to the
encodeChildren()method of our correspondingUIComponent. This method is called fromdoStartTag(). Normally, delegation occurs unconditionally; however, this method is abstracted out so that advanced tags can conditionally perform this call.- Throws:
java.io.IOException- if an input/output error occurs
-
encodeEnd
protected void encodeEnd() throws java.io.IOExceptionDeprecated.No encoding is done during JSP page execution. Encoding is deferred until the page has completed executing to allow the entire tree to be built before any encoding occurs.Delegate to the
encodeEnd()method of our correspondingUIComponent. This method is called fromdoStartTag(). Normally, delegation occurs unconditionally; however, this method is abstracted out so that advanced tags can conditionally perform this call.- Throws:
java.io.IOException- if an input/output error occurs
-
setPageContext
public void setPageContext(javax.servlet.jsp.PageContext pageContext)
Set the
PageContextof the page containing this tag instance.- Specified by:
setPageContextin interfacejavax.servlet.jsp.tagext.Tag- Parameters:
pageContext- The enclosingPageContext
-
getParent
public javax.servlet.jsp.tagext.Tag getParent()
Return the
Tagthat is the parent of this instance.- Specified by:
getParentin interfacejavax.servlet.jsp.tagext.Tag
-
setParent
public void setParent(javax.servlet.jsp.tagext.Tag parent)
Set the
Tagthat is the parent of this instance.- Specified by:
setParentin interfacejavax.servlet.jsp.tagext.Tag- Parameters:
parent- The new parentTag
-
setupResponseWriter
protected void setupResponseWriter()
Set up the
ResponseWriterfor the current response, if this has not been done already.@deprecated.
ViewHandler.renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)is now responsible for setting up the response writer. This method is now a no-op.
-
findComponent
protected UIComponent findComponent(FacesContext context) throws javax.servlet.jsp.JspException
Find and return the
UIComponent, from the component tree, that corresponds to this tag handler instance. If there is no suchUIComponent, create one and add it as a child or facet of theUIComponentassociated with our nearest enclosingUIComponentTag. The process for locating or creating the component is:- If we have previously located this component, return it.
- Locate the parent component by looking for a parent
UIComponentTaginstance, and ask it for its component. If there is no parentUIComponentTaginstance, this tag represents the root component, so get it from the currentTreeand return it. - If this
UIComponentTaginstance has thefacetNameattribute set, ask the parentUIComponentfor a facet with this name. If not found, create one, callsetProperties()with the new component as a parameter, and register it under this name. Return the found or created facetUIComponent. - Determine the component id to be assigned to the new
component, as follows: if this
UIComponentTaghas anidattribute set, use that value; otherwise, generate an identifier that is guaranteed to be the same for thisUIComponentevery time this page is processed (i.e. one based on the location of allUIComponentTaginstances without anidattribute set). - Ask the parent
UIComponentfor a child with this identifier. If not found, create one, callsetProperties()with the new component as a parameter, and register it as a child with this identifier. Return the found or created childUIComponent.
When creating a component, the process is:
- Retrieve the component type by calling
UIComponentTagBase.getComponentType() - If the component has a
bindingattribute, create an expression from it, and callApplication.createComponent(java.lang.String)with that expression, theFacesContext, and the component type. Store the expression using the key"binding". - Otherwise, call
Application.createComponent(java.lang.String)with only the component type. - Call
setProperties(). - Add the new component as a child or facet of its parent
- Throws:
javax.servlet.jsp.JspException
-
getParentUIComponentClassicTagBase
public static UIComponentClassicTagBase getParentUIComponentClassicTagBase(javax.servlet.jsp.PageContext context)
Locate and return the nearest enclosing
UIComponentClassicTagBaseif any; otherwise, returnnull.- Parameters:
context-PageContextfor the current page
-
getIndexOfNextChildTag
protected int getIndexOfNextChildTag()
Description copied from class:UIComponentTagBaseReturn 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.
- Specified by:
getIndexOfNextChildTagin classUIComponentTagBase
-
addChild
protected void addChild(UIComponent child)
Description copied from class:UIComponentTagBaseAdd the component identifier of the specified
UIComponentto the list of component identifiers created or located by nestedUIComponentTags processing this request.- Specified by:
addChildin classUIComponentTagBase- Parameters:
child- New child whose identifier should be added
-
addFacet
protected void addFacet(java.lang.String name)
Description copied from class:UIComponentTagBaseAdd the facet name of the specified facet to the list of facet names created or located by nested
UIComponentTags processing this request.- Specified by:
addFacetin classUIComponentTagBase- Parameters:
name- Facet name to be added
-
createVerbatimComponentFromBodyContent
protected UIComponent createVerbatimComponentFromBodyContent()
Create a transient UIOutput component from the body content, of this tag instance or return null if there is no body content, the body content is whitespace, or the body content is a comment.
-
createVerbatimComponent
protected UIOutput createVerbatimComponent()
Use the
Applicationinstance to create a new component with the following characteristics.componentTypeisjavax.faces.HtmlOutputText.transientistrue.escapeisfalse.idisFacesContext.getViewRoot().createUniqueId()
-
addVerbatimBeforeComponent
protected void addVerbatimBeforeComponent(UIComponentClassicTagBase parentTag, UIComponent verbatim, UIComponent component)
Add verbatim as a sibling of component in component in the parent's child list. verbatim is added to the list at the position immediatly preceding component.
-
addVerbatimAfterComponent
protected void addVerbatimAfterComponent(UIComponentClassicTagBase parentTag, UIComponent verbatim, UIComponent component)
Add verbatim as a sibling of component in component in the parent's child list. verbatim is added to the list at the position immediatly following component.
-
doStartTag
public int doStartTag() throws javax.servlet.jsp.JspExceptionPerform any processing necessary to find (or create) the
UIComponentinstance in the view corresponding to this tag instance in the page and, if and only if a component was created, insert it into the tree at the proper location as expected by the page author. Secondarily, cause a transientUIOutputcomponent to be created and placed in the tree before theUIComponentinstance for this tag. The value of thisUIOutputcomponent must include anything covered byCASE 1orCASE 2in the class description.The default implementation, which is intended to be sufficient for most components, implements this secondary requirement by calling
getParentUIComponentClassicTagBase(javax.servlet.jsp.PageContext), and callingcreateVerbatimComponentFromBodyContent()on the result. It then adds the returned component to the tree before the actual component for this tag instance instance by callingaddVerbatimBeforeComponent(javax.faces.webapp.UIComponentClassicTagBase, javax.faces.component.UIComponent, javax.faces.component.UIComponent).Before returning, the component is pushed onto the component stack for this response to enable the
getParentUIComponentClassicTagBase(javax.servlet.jsp.PageContext)method to work properly.The flag value to be returned is acquired by calling the
getDoStartValue()method, which tag subclasses may override if they do not want the default value.- Specified by:
doStartTagin interfacejavax.servlet.jsp.tagext.Tag- Throws:
javax.servlet.jsp.JspException- if an error occurs
-
doEndTag
public int doEndTag() throws javax.servlet.jsp.JspExceptionPerform any processing necessary to handle the content implications of CASE 3 in the class description.
The default implementation, which is intended to be sufficient for most components, calls
createVerbatimComponentFromBodyContent()on this instance and adds it as a child of the component for this tag's component at the end of the child list. In addition, the following housekeeping steps are taken.- Retrieve from the
UIComponentthe set of component ids of child components created byUIComponentTaginstances the last time this page was processed (if any). Compare it to the list of children created during this page processing pass, and remove all children present in the old list but not the new. Save the new list as a component attribute so that it gets saved as part of the component's state. - Retrieve from the
UIComponentthe set of facet names of facets created byUIComponentTaginstances the last time this page was processed (if any). Compare it to the list of facets created during this page processing pass, and remove all facets present in the old list but not the new. Save the new list as a component attribute so that it gets saved as part of the component's state. - Release all references to the component, and pop it from the component stack for this response, removing the stack if this was the outermost component.
The flag value to be returned is acquired by calling the
getDoEndValue()method, which tag subclasses may override if they do not want the default value.- Specified by:
doEndTagin interfacejavax.servlet.jsp.tagext.Tag- Throws:
javax.servlet.jsp.JspException- if an error occurs
- Retrieve from the
-
release
public void release()
Release any resources allocated during the execution of this tag handler.
- Specified by:
releasein interfacejavax.servlet.jsp.tagext.Tag
-
getDoAfterBodyValue
protected int getDoAfterBodyValue() throws javax.servlet.jsp.JspExceptionReturn the flag value that should be returned from the
doAfterBody()method when it is called. Subclasses may override this method to return the appropriate value.- Throws:
javax.servlet.jsp.JspException
-
setBodyContent
public void setBodyContent(javax.servlet.jsp.tagext.BodyContent bodyContent)
Set the
bodyContentfor this tag handler. This method is invoked by the JSP page implementation object at most once per action invocation, beforedoInitiBody(). This method will not be invoked for empty tags or for non-empty tags whosedoStartTag()method returnsSKIP_BODYorEVAL_BODY_INCLUDE.- Specified by:
setBodyContentin interfacejavax.servlet.jsp.tagext.BodyTag- Parameters:
bodyContent- The newBodyContentfor this tag
-
getPreviousOut
public javax.servlet.jsp.JspWriter getPreviousOut()
Get the
JspWriterfrom ourBodyContent.
-
getBodyContent
public javax.servlet.jsp.tagext.BodyContent getBodyContent()
-
doInitBody
public void doInitBody() throws javax.servlet.jsp.JspExceptionPrepare for evaluation of the body. This method is invoked by the JSP page implementation object after
setBodyContent()and before the first time the body is to be evaluated. This method will not be invoked for empty tags or for non-empty tags whosedoStartTag()method returnsSKIP_BODYorEVAL_BODY_INCLUDE.- Specified by:
doInitBodyin interfacejavax.servlet.jsp.tagext.BodyTag- Throws:
javax.servlet.jsp.JspException- if an error is encountered
-
doAfterBody
public int doAfterBody() throws javax.servlet.jsp.JspExceptionPerform any processing necessary to handle the content implications of CASE 4 in the class description.
Return result from
getDoAfterBodyValue()- Specified by:
doAfterBodyin interfacejavax.servlet.jsp.tagext.IterationTag- Throws:
javax.servlet.jsp.JspException- if an error is encountered
-
setId
public void setId(java.lang.String id)
Set the component identifier for our component. If the argument begins with
UIViewRoot.UNIQUE_ID_PREFIXthrow anIllegalArgumentException- Specified by:
setIdin classUIComponentTagBase- 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.
-
getId
protected java.lang.String getId()
Return the
idvalue assigned by the page author.
-
getFacesJspId
protected java.lang.String getFacesJspId()
If this method has been called before on this tag's useful lifetime (before
release()was called), return the previously returned value. Otherwise, ifgetJspId()returns non-null, prependUNIQUE_ID_PREFIXto thejspIdand return the result.
-
getCreatedComponents
protected java.util.List<java.lang.String> getCreatedComponents()
Returns theListofUIComponentids created or located by nestedUIComponentTags while processing the current request.
-
setJspId
public void setJspId(java.lang.String id)
Defined on
JspIdConsumer. This method is called by the container beforedoStartTag(). The argument is guaranteed to be unique within the page.IMPLEMENTATION NOTE: This method will detect where we are in an include and assign a unique ID for each include in a particular 'logical page'. This allows us to avoid possible duplicate ID situations for included pages that have components without explicit IDs.
- Specified by:
setJspIdin interfacejavax.servlet.jsp.tagext.JspIdConsumer- Parameters:
id- the container generated id for this tag, guaranteed to be unique within the page.
-
getJspId
public java.lang.String getJspId()
-
setProperties
protected abstract void setProperties(UIComponent component)
Override properties and attributes of the specified component, if the corresponding properties of this tag handler instance were explicitly set. This method must be called ONLY if the specified
UIComponentwas in fact created during the execution of this tag handler instance, and this call will occur BEFORE theUIComponentis added to the view.Tag subclasses that want to support additional set properties must ensure that the base class
setProperties()method is still called. A typical implementation that supports extra propertiesfooandbarwould look something like this:protected void setProperties(UIComponent component) { super.setProperties(component); if (foo != null) { component.setAttribute("foo", foo); } if (bar != null) { component.setAttribute("bar", bar); } }The default implementation overrides the following properties:
rendered- Set if a value for therenderedproperty is specified for this tag handler instance.rendererType- Set if thegetRendererType()method returns a non-null value.
- Parameters:
component-UIComponentwhose properties are to be overridden
-
createComponent
protected abstract UIComponent createComponent(FacesContext context, java.lang.String newId) throws javax.servlet.jsp.JspException
Create and return a new child component of the type returned by calling
getComponentType(). If thisUIComponentTaghas a non-nullbindingattribute, this is done by callApplication.createComponent(java.lang.String)with the expression created for thebindingattribute, and the expression will be stored on the component. Otherwise,Application.createComponent(java.lang.String)is called with only the component type. Finally, initialize the components id and other properties.- Parameters:
context-FacesContextfor the current requestnewId- id of the component- Throws:
javax.servlet.jsp.JspException
-
hasBinding
protected abstract boolean hasBinding()
Return
trueif this component has a non-nullbinding attribute. This method is necessary to allow subclasses that expose thebindingproperty as an Faces 1.1 style EL property as well as subclasses that expose it as an EL API property.
-
getComponentInstance
public 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.- Specified by:
getComponentInstancein classUIComponentTagBase
-
getCreated
public 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.- Specified by:
getCreatedin classUIComponentTagBase
-
getFacesContext
protected FacesContext getFacesContext()
Description copied from class:UIComponentTagBaseReturn the
FacesContextinstance for the current request. This value will be non-nullonly from the beginning ofdoStartTag()through the end ofdoEndTag()for each tag instance.- Specified by:
getFacesContextin classUIComponentTagBase
-
getFacetName
protected java.lang.String getFacetName()
Return the facet name that we should be stored under, if any; otherwise, return null (indicating that we will be a child component).
-
-