javax.servlet.jsp.jstl.core
abstract public class: ConditionalTagSupport [javadoc |
source]
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.jstl.core.ConditionalTagSupport
All Implemented Interfaces:
IterationTag, Serializable
Abstract class that facilitates implementation of conditional actions
where the boolean result is exposed as a JSP scoped variable. The
boolean result may then be used as the test condition in a <c:when>
action.
This base class provides support for:
- Conditional processing of the action's body based on the returned value
of the abstract method condition().
- Storing the result of condition() as a Boolean object
into a JSP scoped variable identified by attributes var and
scope.
Constructor: |
public ConditionalTagSupport() {
super();
init();
}
Base constructor to initialize local state. As with TagSupport,
subclasses should not implement constructors with arguments, and
no-argument constructors implemented by subclasses must call the
superclass constructor. |
Methods from javax.servlet.jsp.tagext.TagSupport: |
---|
doAfterBody, doEndTag, doStartTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |