Class SetDataSourceTagSupport
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- org.apache.taglibs.standard.tag.common.sql.SetDataSourceTagSupport
-
- All Implemented Interfaces:
java.io.Serializable,IterationTag,JspTag,Tag
- Direct Known Subclasses:
SetDataSourceTag
public class SetDataSourceTagSupport extends TagSupport
Tag handler for <SetDataSource> in JSTL, used to create a simple DataSource for prototyping.
- 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 SetDataSourceTagSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoStartTag()Default processing of the start tag, returning SKIP_BODY.voidrelease()Release state.voidsetScope(java.lang.String scope)Setter method for the scope of the variable to hold the result.voidsetVar(java.lang.String var)-
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
doAfterBody, doEndTag, findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValue
-
-
-
-
Method Detail
-
setScope
public void setScope(java.lang.String scope)
Setter method for the scope of the variable to hold the result.
-
setVar
public void setVar(java.lang.String var)
-
doStartTag
public int doStartTag() throws JspExceptionDescription copied from class:TagSupportDefault processing of the start tag, returning SKIP_BODY.- Specified by:
doStartTagin interfaceTag- Overrides:
doStartTagin classTagSupport- Returns:
- SKIP_BODY
- Throws:
JspException- if an error occurs while processing this tag- See Also:
Tag.doStartTag()
-
release
public void release()
Description copied from class:TagSupportRelease state.- Specified by:
releasein interfaceTag- Overrides:
releasein classTagSupport- See Also:
Tag.release()
-
-