com.opensymphony.module.sitemesh.taglib.decorator
public class: HeadTag [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.HeadTag
All Implemented Interfaces:
RequestConstants, BodyTag, IterationTag, Serializable
Write original HTMLPage head to out.
Also see:
- com.opensymphony.module.sitemesh.HTMLPage#writeHead(java.io.Writer)
- author:
< - a href="joe@truemesh.com">Joe Walnes
- version:
$ - Revision: 1.2 $
| Method from com.opensymphony.module.sitemesh.taglib.decorator.HeadTag 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.HeadTag Detail: |
public final int doEndTag() {
try {
HTMLPage htmlPage = (HTMLPage)getPage();
htmlPage.writeHead(getOut());
}
catch (Exception e) {
trace(e);
}
return EVAL_PAGE;
}
|