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.TagSupport
FacetTag is the JSP mechanism for denoting a
UIComponent
is to be added as afacet
to the component associated with its parent.A FacetTag must have one and only one child. This child must be a
UIComponentTag
instance representing a singleUIComponent
instance.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FacetTag()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
doStartTag()
ReturnEVAL_BODY_INCLUDE
to cause nested body content to be evaluated.java.lang.String
getName()
Return the name to be assigned to this facet.void
release()
Release any resources allocated by this tag instance.void
setName(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:
release
in interfacejavax.servlet.jsp.tagext.Tag
- Overrides:
release
in classjavax.servlet.jsp.tagext.TagSupport
-
doStartTag
public int doStartTag() throws javax.servlet.jsp.JspException
Return
EVAL_BODY_INCLUDE
to cause nested body content to be evaluated.- Specified by:
doStartTag
in interfacejavax.servlet.jsp.tagext.Tag
- Overrides:
doStartTag
in classjavax.servlet.jsp.tagext.TagSupport
- Throws:
javax.servlet.jsp.JspException
-
-