com.opensymphony.module.sitemesh.taglib.decorator
public class: BodyTag [javadoc |
source]
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.tagext.BodyTagSupport
com.opensymphony.module.sitemesh.taglib.AbstractTag
com.opensymphony.module.sitemesh.taglib.decorator.BodyTag
All Implemented Interfaces:
RequestConstants, BodyTag, IterationTag, Serializable
Write original Page body to out.
Also see:
- com.opensymphony.module.sitemesh.HTMLPage#writeBody(java.io.Writer)
- author:
< - a href="joe@truemesh.com">Joe Walnes
- author:
< - a href="scott@atlassian.com">Scott Farquhar
- version:
$ - Revision: 1.2 $
| Method from com.opensymphony.module.sitemesh.taglib.decorator.BodyTag Summary: |
|---|
|
doEndTag |
| Methods from javax.servlet.jsp.tagext.TagSupport: |
|---|
|
doAfterBody, doEndTag, doStartTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue |
| Method from com.opensymphony.module.sitemesh.taglib.decorator.BodyTag Detail: |
public final int doEndTag() {
try {
getPage().writeBody(getOut());
}
catch (Exception e) {
trace(e);
}
return EVAL_PAGE;
}
|