com.caucho.jstl.el
Class CoreSetTag
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.tagext.BodyTagSupport
com.caucho.jstl.el.CoreSetTag
- All Implemented Interfaces:
- java.io.Serializable, BodyTag, IterationTag, JspTag, Tag
public class CoreSetTag
- extends BodyTagSupport
- See Also:
- Serialized Form
Method Summary |
int |
doEndTag()
Processed at the end of the tag. |
int |
doStartTag()
Process the tag. |
void |
setProperty(Expr property)
Sets the property to be set. |
void |
setScope(java.lang.String scope)
Sets the scope of the variable. |
void |
setTarget(Expr target)
Sets the target to be set. |
void |
setValue(Expr value)
Sets the JSP-EL expression value. |
static void |
setValue(PageContext pageContext,
java.lang.String var,
java.lang.String scope,
java.lang.Object value)
|
void |
setVar(java.lang.String var)
Sets the variable to assign |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CoreSetTag
public CoreSetTag()
setValue
public void setValue(Expr value)
- Sets the JSP-EL expression value.
setVar
public void setVar(java.lang.String var)
- Sets the variable to assign
setScope
public void setScope(java.lang.String scope)
- Sets the scope of the variable.
setTarget
public void setTarget(Expr target)
- Sets the target to be set.
setProperty
public void setProperty(Expr property)
- Sets the property to be set.
doStartTag
public int doStartTag()
throws JspException
- Process the tag.
- Specified by:
doStartTag
in interface Tag
- Overrides:
doStartTag
in class BodyTagSupport
- Returns:
- SKIP_BODY to ignore the body and EVAL_BODY_INCLUDE
to evaluate the body.
- Throws:
JspException
doEndTag
public int doEndTag()
throws JspException
- Description copied from class:
TagSupport
- Processed at the end of the tag. The default behavior continues
with the rest of the JSP.
- Specified by:
doEndTag
in interface Tag
- Overrides:
doEndTag
in class TagSupport
- Returns:
- EVAL_PAGE to continue the page SKIP_PAGE to stop.
- Throws:
JspException
setValue
public static void setValue(PageContext pageContext,
java.lang.String var,
java.lang.String scope,
java.lang.Object value)
throws JspException
- Throws:
JspException