Class RemoveTag
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- org.apache.taglibs.standard.tag.common.core.RemoveTag
-
- All Implemented Interfaces:
Serializable,IterationTag,JspTag,Tag
public class RemoveTag extends TagSupport
A handler for the <remove> tag, which removes the variable identified by 'var' (and 'scope', if present).
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAIN
-
Fields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
-
-
Constructor Summary
Constructors Constructor Description RemoveTag()Constructs a new handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoEndTag()Default processing of the end tag returning EVAL_PAGE.voidrelease()Release state.voidsetScope(String scope)voidsetVar(String var)-
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
doAfterBody, doStartTag, findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValue
-
-
-
-
Method Detail
-
release
public void release()
Description copied from class:TagSupportRelease state.- Specified by:
releasein interfaceTag- Overrides:
releasein classTagSupport- See Also:
Tag.release()
-
doEndTag
public int doEndTag() throws JspExceptionDescription copied from class:TagSupportDefault processing of the end tag returning EVAL_PAGE.- Specified by:
doEndTagin interfaceTag- Overrides:
doEndTagin classTagSupport- Returns:
- EVAL_PAGE
- Throws:
JspException- if an error occurs while processing this tag- See Also:
Tag.doEndTag()
-
setVar
public void setVar(String var)
-
setScope
public void setScope(String scope)
-
-