Package javax.faces.webapp
Class FacetTag
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- javax.faces.webapp.FacetTag
-
- All Implemented Interfaces:
java.io.Serializable,javax.servlet.jsp.tagext.IterationTag,javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.tagext.Tag
public class FacetTag extends javax.servlet.jsp.tagext.TagSupportFacetTag is the JSP mechanism for denoting a
UIComponentis to be added as afacetto the component associated with its parent.A FacetTag must have one and only one child. This child must be a
UIComponentTaginstance representing a singleUIComponentinstance.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FacetTag()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoStartTag()ReturnEVAL_BODY_INCLUDEto cause nested body content to be evaluated.java.lang.StringgetName()Return the name to be assigned to this facet.voidrelease()Release any resources allocated by this tag instance.voidsetName(java.lang.String name)Set the name to be assigned to this facet.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Return the name to be assigned to this facet.
-
setName
public void setName(java.lang.String name)
Set the name to be assigned to this facet.
- Parameters:
name- The new facet name
-
release
public void release()
Release any resources allocated by this tag instance.
- Specified by:
releasein interfacejavax.servlet.jsp.tagext.Tag- Overrides:
releasein classjavax.servlet.jsp.tagext.TagSupport
-
doStartTag
public int doStartTag() throws javax.servlet.jsp.JspExceptionReturn
EVAL_BODY_INCLUDEto cause nested body content to be evaluated.- Specified by:
doStartTagin interfacejavax.servlet.jsp.tagext.Tag- Overrides:
doStartTagin classjavax.servlet.jsp.tagext.TagSupport- Throws:
javax.servlet.jsp.JspException
-
-