Interface | Description |
---|---|
ParamParent |
Interface for tag handlers implementing valid parent tags for
<c:param>.
|
Class | Description |
---|---|
CatchTag |
Tag handler for <catch> in JSTL 1.0.
|
ChooseTag |
Tag handler for <choose> in JSTL.
|
DeclareTag |
Tag handler for <declaregt; in JSTL.
|
ForEachSupport |
Support for tag handlers for <forEach>, the core iteration
tag in JSTL 1.0.
|
ForEachSupport.ArrayIterator |
Iterator over an array, including arrays of primitive types.
|
ForEachSupport.DeferredIterator | |
ForEachSupport.EnumerationIterator |
Iterator over an Enumeration.
|
ForEachSupport.IndexedDeferredIterator | |
ForEachSupport.IteratedDeferredIterator | |
ForEachSupport.ReadOnlyIterator | |
ForEachSupport.ToEndIterator |
Iterator that simply counts up to 'end.'
Unlike the previous implementation this does not attempt to pre-allocate an array
containing all values from 0 to 'end' as that can result in excessive memory allocation
for large values of 'end.'
LoopTagSupport calls next() 'begin' times in order to discard the initial values,
In order to maintain this contract, this implementation always starts at 0.
|
ForTokensSupport |
Support for tag handlers for <forTokens>, the tokenizing
iteration tag in JSTL 1.0.
|
ImportSupport |
Support for tag handlers for <import>, the general-purpose
text-importing mechanism for JSTL 1.0.
|
OtherwiseTag |
Tag handler for <otherwise> in JSTL.
|
OutSupport |
Support for handlers of the <out> tag, which simply evalutes and
prints the result of the expression it's passed.
|
ParamSupport |
Support for tag handlers for <param>, the URL parameter
subtag for <import> in JSTL 1.0.
|
ParamSupport.ParamManager |
Provides support for aggregating query parameters in URLs.
|
RedirectSupport |
Support for tag handlers for <redirect>, JSTL 1.0's tag
for redirecting to a new URL (with optional query parameters).
|
RemoveTag |
A handler for the <remove> tag, which removes the variable
identified by 'var' (and 'scope', if present).
|
SetSupport |
Support for handlers of the <set> tag.
|
UrlSupport |
Support for tag handlers for <url>, the URL creation
and rewriting tag in JSTL 1.0.
|
Util |
Utilities in support of tag-handler classes.
|
WhenTagSupport |
WhenTagSupport is an abstract class that facilitates
implementation of <when>-style tags in both the rtexprvalue
and expression-evaluating libraries.
|
Exception | Description |
---|---|
NullAttributeException |
NullAttributeException is a JspTagException that will be thrown
by the JSTL RI handlers when a tag attribute illegally evaluates
to 'null'.
|