public interface JspTag
| Modifier and Type | Method and Description |
|---|---|
void |
doTag(java.io.Writer targetWriter,
java.util.Map<java.lang.String,java.lang.Object> attributes)
Main method to invoke a tag library and output to the target write
|
void |
doTag(java.io.Writer targetWriter,
java.util.Map<java.lang.String,java.lang.Object> attributes,
groovy.lang.Closure<?> body)
Invokes a tag with a closure representing the body of the tag
|
boolean |
isBodyTag() |
boolean |
isIterationTag() |
boolean |
isTryCatchFinallyTag() |
void doTag(java.io.Writer targetWriter,
java.util.Map<java.lang.String,java.lang.Object> attributes)
targetWriter - The writer the tag should write toattributes - The tag attributesvoid doTag(java.io.Writer targetWriter,
java.util.Map<java.lang.String,java.lang.Object> attributes,
groovy.lang.Closure<?> body)
targetWriter - The target writer to write toattributes - The tag attributesbody - The body of the tagboolean isTryCatchFinallyTag()
boolean isIterationTag()
boolean isBodyTag()