1 17 package javax.servlet.jsp.tagext; 18 19 import javax.servlet.jsp.*; 20 21 113 114 public interface BodyTag extends IterationTag { 115 116 125 126 public final static int EVAL_BODY_TAG = 2; 127 128 136 137 public final static int EVAL_BODY_BUFFERED = 2; 138 139 140 163 164 void setBodyContent(BodyContent b); 165 166 167 183 184 void doInitBody() throws JspException; 185 186 } 187 | Popular Tags |