public abstract class AbstractHtmlElementBodyTag extends AbstractHtmlElementTag implements BodyTag
AbstractHtmlElementTag
. The only thing sub tags
need to do is override renderDefaultContent(TagWriter)
.CLASS_ATTRIBUTE, DIR_ATTRIBUTE, LANG_ATTRIBUTE, ONCLICK_ATTRIBUTE, ONDBLCLICK_ATTRIBUTE, ONKEYDOWN_ATTRIBUTE, ONKEYPRESS_ATTRIBUTE, ONKEYUP_ATTRIBUTE, ONMOUSEDOWN_ATTRIBUTE, ONMOUSEMOVE_ATTRIBUTE, ONMOUSEOUT_ATTRIBUTE, ONMOUSEOVER_ATTRIBUTE, ONMOUSEUP_ATTRIBUTE, STYLE_ATTRIBUTE, TABINDEX_ATTRIBUTE, TITLE_ATTRIBUTE
NESTED_PATH_VARIABLE_NAME
logger, REQUEST_CONTEXT_PAGE_ATTRIBUTE
pageContext
EVAL_BODY_BUFFERED, EVAL_BODY_TAG
EVAL_BODY_AGAIN
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
Constructor and Description |
---|
AbstractHtmlElementBodyTag() |
Modifier and Type | Method and Description |
---|---|
int |
doEndTag()
If
rendering , flush any buffered
BodyContent or, if no BodyContent is supplied,
render the default content . |
void |
doFinally()
Clean up any attributes and stored resources.
|
void |
doInitBody() |
protected void |
exposeAttributes()
Called during
writeTagContent(org.springframework.web.servlet.tags.form.TagWriter) allowing subclasses to add any attributes to the
PageContext as needed. |
protected void |
flushBufferedBodyContent(BodyContent bodyContent)
The user customised the output of the error messages - flush the
buffered content into the main
JspWriter . |
protected void |
onWriteTagContent()
Called at the start of
writeTagContent(org.springframework.web.servlet.tags.form.TagWriter) allowing subclasses to perform
any precondition checks or setup tasks that might be necessary. |
protected void |
removeAttributes()
Called by
doFinally() allowing subclasses to remove any attributes from the
PageContext as needed. |
protected abstract void |
renderDefaultContent(TagWriter tagWriter) |
protected void |
renderFromBodyContent(BodyContent bodyContent,
TagWriter tagWriter)
Render the tag contents based on the supplied
BodyContent . |
void |
setBodyContent(BodyContent bodyContent) |
protected boolean |
shouldRender()
Should rendering of this tag proceed at all.
|
protected int |
writeTagContent(TagWriter tagWriter)
Subclasses should implement this method to perform tag content rendering.
|
getCssClass, getCssErrorClass, getCssStyle, getDir, getDynamicAttributes, getLang, getOnclick, getOndblclick, getOnkeydown, getOnkeypress, getOnkeyup, getOnmousedown, getOnmousemove, getOnmouseout, getOnmouseover, getOnmouseup, getTabindex, getTitle, isValidDynamicAttribute, resolveCssClass, setCssClass, setCssErrorClass, setCssStyle, setDir, setDynamicAttribute, setLang, setOnclick, setOndblclick, setOnkeydown, setOnkeypress, setOnkeyup, setOnmousedown, setOnmousemove, setOnmouseout, setOnmouseover, setOnmouseup, setTabindex, setTitle, writeDefaultAttributes, writeOptionalAttributes
autogenerateId, convertToDisplayString, getBindStatus, getBoundValue, getEditor, getId, getName, getNestedPath, getPath, getPropertyEditor, getPropertyPath, processFieldValue, resolveId, setId, setPath
createTagWriter, doStartTagInternal, evaluate, getDisplayString, getDisplayString, isDefaultHtmlEscape, writeOptionalAttribute
htmlEscape, isHtmlEscape, isResponseEncodedHtmlEscape, setHtmlEscape
doCatch, doStartTag, getRequestContext
doAfterBody, findAncestorWithClass, getParent, getValue, getValues, release, removeValue, setPageContext, setParent, setValue
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
doAfterBody
doStartTag, getParent, release, setPageContext, setParent
protected int writeTagContent(TagWriter tagWriter) throws JspException
AbstractFormTag
writeTagContent
in class AbstractFormTag
Tag.doStartTag()
.JspException
public int doEndTag() throws JspException
rendering
, flush any buffered
BodyContent
or, if no BodyContent
is supplied,
render the default content
.doEndTag
in interface Tag
doEndTag
in class TagSupport
JspException
protected void renderFromBodyContent(BodyContent bodyContent, TagWriter tagWriter) throws JspException
BodyContent
.
The default implementation simply flushes
the BodyContent
directly to the output. Subclasses may choose to
override this to add additional content to the output.
JspException
public void doFinally()
doFinally
in interface TryCatchFinally
doFinally
in class AbstractDataBoundFormElementTag
protected void onWriteTagContent()
writeTagContent(org.springframework.web.servlet.tags.form.TagWriter)
allowing subclasses to perform
any precondition checks or setup tasks that might be necessary.protected boolean shouldRender() throws JspException
true
' by default
causing rendering to occur always, Subclasses can override this if they
provide conditional rendering.JspException
protected void exposeAttributes() throws JspException
writeTagContent(org.springframework.web.servlet.tags.form.TagWriter)
allowing subclasses to add any attributes to the
PageContext
as needed.JspException
protected void removeAttributes()
doFinally()
allowing subclasses to remove any attributes from the
PageContext
as needed.protected void flushBufferedBodyContent(BodyContent bodyContent) throws JspException
JspWriter
.JspException
protected abstract void renderDefaultContent(TagWriter tagWriter) throws JspException
JspException
public void doInitBody() throws JspException
doInitBody
in interface BodyTag
JspException
public void setBodyContent(BodyContent bodyContent)
setBodyContent
in interface BodyTag