| 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.
|
interface |
SimpleTag
Tags are Java classes implementing JSP Tag extensions.
|
interface |
Tag
Tags are Java classes implementing JSP Tag extensions.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BodyTagSupport
Convenience class defining default behavior for a BodyTag.
|
class |
SimpleTagSupport
Support for SimpleTag.
|
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 JspTag |
SimpleTagSupport.findAncestorWithClass(JspTag tag,
java.lang.Class<?> cl)
Finds an ancestor of a tag matching the class.
|
JspTag |
TagAdapter.getAdaptee()
Returns the wrapped object.
|
JspTag |
SimpleTagSupport.getParent()
returns the parent
|
JspTag |
SimpleTag.getParent()
Returns the parent tag.
|
| Modifier and Type | Method and Description |
|---|---|
static JspTag |
SimpleTagSupport.findAncestorWithClass(JspTag tag,
java.lang.Class<?> cl)
Finds an ancestor of a tag matching the class.
|
void |
SimpleTagSupport.setParent(JspTag parent)
Sets the parent
|
void |
SimpleTag.setParent(JspTag parent)
Sets the parent tag.
|