META-INF.schema.cdk-jstl-core.xsd Maven / Gradle / Ivy
Subset of JSTL 1.2 core library supported by RichFaces CDK.
The test condition that determines whether or not the body content should be processed.
Simple conditional tag, which evalutes its body if the supplied condition is true
and optionally exposes a
Boolean scripting variable representing the evaluation of
this condition
Simple conditional tag that establishes a context for mutually exclusive conditional
operations, marked by
]]>
and
]]>
tags.
Subtag of
]]>
that includes its body if its condition
evaluates to 'true'.
Subtag of
]]>
that follows tags and runs only if
all of the prior conditions evaluated to 'false'.
The basic iteration tag, accepting many different collection types and supporting subsetting
and other
functionality.
Support for this tag is not currently implemented.
Collection of items to iterate over.
Name of the exported scoped variable for the current item of the iteration.
This scoped
variable has nested visibility. Its type depends on the object
of the underlying collection.
Name of the exported scoped variable for the status of the iteration. Object exported is of
type javax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nested visibility.
If items specified: Iteration begins at the item located at the specified index. First item
of the collection has index 0. If items not specified: Iteration begins with index set at
the value specified.
If items specified: Iteration ends at the item located at the specified index (inclusive). If
items not specified: Iteration ends when index reaches the value specified.
Iteration will only process every step items of the collection, starting with the first one.