Method Summary |
|
public void | addDynamicChild(DynamicChild child) Adds a dynamic child simulating scriptlets and
EL expressions. |
public NestedTag | addTagChild(Class tag) Adds a tag child simulating nested tags.
The corresponding NestedTag will be created
automatically wrapping the specified tag. |
public NestedTag | addTagChild(Class tag, Map attributeMap) Adds a tag child simulating nested tags.
The corresponding NestedTag will be created
automatically wrapping the specified tag. |
public NestedTag | addTagChild(JspTag tag) Adds a tag child simulating nested tags.
NestedTag will be created automatically
wrapping the specified tag. |
public NestedTag | addTagChild(JspTag tag, Map attributeMap) Adds a tag child simulating nested tags.
The corresponding NestedTag will be created
automatically wrapping the specified tag. |
public void | addTextChild(String text) Adds a text child simulating static body content. |
public Object | getChild(int index) Returns a child specified by its index. |
public List | getChilds() Returns the List of childs. |
public JspContext | getJspContext() Returns the JspContext . |
public JspTag | getParent() Returns the parent tag. |
public void | invoke(Writer writer) Executes the fragment and directs all output to the given Writer, or the JspWriter
returned by the getOut() method of the JspContext associated with the fragment
if out is null (copied from JspFragment JavaDoc). |
public void | removeChilds() Removes all childs. |
public void | setJspContext(JspContext jspContext) Sets the JspContext . |
public void | setParent(JspTag parent) Sets the parent tag. |