| Package | Description |
|---|---|
| javax.servlet.jsp.jstl.core | |
| javax.servlet.jsp.tagext |
| Modifier and Type | Interface and Description |
|---|---|
interface |
LoopTag |
| Modifier and Type | Class and Description |
|---|---|
class |
ConditionalTagSupport |
class |
LoopTagSupport |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BodyTag
BodyTag lets tags access the generated tag contents and it allows
tag looping.
|
interface |
IterationTag
IterationTag lets tags loop over the body.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BodyTagSupport
Convenience class defining default behavior for a BodyTag.
|
class |
TagAdapter
Adapts an object to the tag hierarchy.
|
class |
TagSupport
Convenient support class for creating tags which don't analyze their
bodies.
|
| Modifier and Type | Method and Description |
|---|---|
static Tag |
TagSupport.findAncestorWithClass(Tag tag,
java.lang.Class cl)
Finds an ancestor of a tag matching the class.
|
Tag |
Tag.getParent()
Returns the containing tag.
|
Tag |
TagAdapter.getParent()
Returns the parent tag.
|
Tag |
TagSupport.getParent()
Returns the tag's parent.
|
| Modifier and Type | Method and Description |
|---|---|
static Tag |
TagSupport.findAncestorWithClass(Tag tag,
java.lang.Class cl)
Finds an ancestor of a tag matching the class.
|
void |
Tag.setParent(Tag t)
Sets the containing tag.
|
void |
TagAdapter.setParent(Tag parent)
Stubbed.
|
void |
TagSupport.setParent(Tag parent)
If the tag is contained in another tag, this sets the parent.
|