javax.servlet.jsp.jstl.core |
Classes and interfaces related to the core tag library component of the JavaServer Pages Standard Tag Library (JSTL).
This tag library component provides:
- General-purpose tags for the manipulation of scoped variables and handling of error conditions
- Conditional tags for the conditional processing of a JSP page
- Iterator tags for iterating over a wide variety of objects
- URL-related tags for linking or redirecting to URL resources from a JSP page, or importing a URL resource into a JSP page
|
Java Source File Name | Type | Comment |
ConditionalTagSupport.java | Class | Abstract class that facilitates implementation of conditional actions
where the boolean result is exposed as a JSP scoped variable. |
Config.java | Class | Class supporting access to configuration settings. |
IndexedValueExpression.java | Class | |
IteratedExpression.java | Class | |
IteratedValueExpression.java | Class | |
LoopTag.java | Interface | JSTL allows developers to write custom iteration tags by
implementing the LoopTag interface. |
LoopTagStatus.java | Interface | Exposes the current status of
an iteration. |
LoopTagSupport.java | Class | Base support class to facilitate implementation of iteration tags.
Since most iteration tags will behave identically with respect to
actual iterative behavior, JSTL provides this
base support class to facilitate implementation. |