Package javax.faces.webapp
Class AttributeTag
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- javax.faces.webapp.AttributeTag
-
- All Implemented Interfaces:
java.io.Serializable,javax.servlet.jsp.tagext.IterationTag,javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.tagext.Tag
public class AttributeTag extends javax.servlet.jsp.tagext.TagSupportDeprecated.The Faces implementation must now provide the implementation for this class.Tag implementation that adds an attribute with a specified name and String value to the component whose tag it is nested inside, if the component does not already contain an attribute with the same name. This tag creates no output to the page currently being created.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AttributeTag()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intdoEndTag()Deprecated.intdoStartTag()Deprecated.Register the specified attribute name and value with theUIComponentinstance associated with our most immediately surroundingUIComponentTaginstance, if thisUIComponentdoes not already have a value for the specified attribute name.voidrelease()Deprecated.Release references to any acquired resources.voidsetName(java.lang.String name)Deprecated.Set the attribute name.voidsetValue(java.lang.String value)Deprecated.Set the attribute value.
-
-
-
Method Detail
-
setName
public void setName(java.lang.String name)
Deprecated.Set the attribute name.
- Parameters:
name- The new attribute name
-
setValue
public void setValue(java.lang.String value)
Deprecated.Set the attribute value.
- Parameters:
value- The new attribute value
-
doStartTag
public int doStartTag() throws javax.servlet.jsp.JspExceptionDeprecated.Register the specified attribute name and value with the
UIComponentinstance associated with our most immediately surroundingUIComponentTaginstance, if thisUIComponentdoes not already have a value for the specified attribute name.- Specified by:
doStartTagin interfacejavax.servlet.jsp.tagext.Tag- Overrides:
doStartTagin classjavax.servlet.jsp.tagext.TagSupport- Throws:
javax.servlet.jsp.JspException- if a JSP error occurs
-
doEndTag
public int doEndTag() throws javax.servlet.jsp.JspExceptionDeprecated.- Specified by:
doEndTagin interfacejavax.servlet.jsp.tagext.Tag- Overrides:
doEndTagin classjavax.servlet.jsp.tagext.TagSupport- Throws:
javax.servlet.jsp.JspException
-
release
public void release()
Deprecated.Release references to any acquired resources.
- Specified by:
releasein interfacejavax.servlet.jsp.tagext.Tag- Overrides:
releasein classjavax.servlet.jsp.tagext.TagSupport
-
-