Methods Summary |
---|
public int | doAfterBody()After the body evaluation: do not reevaluate and continue with the page.
By default nothing is done with the bodyContent data (if any).
return SKIP_BODY;
|
public int | doEndTag()Default processing of the end tag returning EVAL_PAGE.
return super.doEndTag();
|
public void | doInitBody()Prepare for evaluation of the body just before the first body evaluation:
no action.
|
public int | doStartTag()Default processing of the start tag returning EVAL_BODY_BUFFERED.
return EVAL_BODY_BUFFERED;
|
public BodyContent | getBodyContent()Get current bodyContent.
return bodyContent;
|
public javax.servlet.jsp.JspWriter | getPreviousOut()Get surrounding out JspWriter.
return bodyContent.getEnclosingWriter();
|
public void | release()Release state.
bodyContent = null;
super.release();
|
public void | setBodyContent(BodyContent b)Prepare for evaluation of the body: stash the bodyContent away.
this.bodyContent = b;
|