BodyTag Interface | |
public interface BodyTag extends Tag | |
Tag BodyTag The BodyTag interface defines methods that are used by a tag handler access its body. |
EVAL_BODY_TAG | |
public static final int EVAL_BODY_TAG | Constant |
This constant is used to request the creation of new BodyContent, on which to evaluate the body of the current tag. |
doAfterBody() | |
public int doAfterBody() throws JspError | Method |
doAfterBody() is invoked every time after the body is evaluated. |
doInitBody() | |
public int doInitBody() throws JspError | Method |
doInitBody() is invoked before the body is evaluated. |
setBodyContent() | |
public void setBodyContent(BodyContent bc) | Method |
setBodyContent() specifies a BodyContent object that will be used in conjunction with the evaluation of a tag's body. |