1 17 18 package javax.servlet.jsp.tagext; 19 20 import javax.servlet.jsp.*; 21 22 23 90 91 public interface Tag extends JspTag { 92 93 97 98 public final static int SKIP_BODY = 0; 99 100 104 105 public final static int EVAL_BODY_INCLUDE = 1; 106 107 111 112 public final static int SKIP_PAGE = 5; 113 114 118 119 public final static int EVAL_PAGE = 6; 120 121 123 124 134 135 void setPageContext(PageContext pc); 136 137 138 147 148 149 void setParent(Tag t); 150 151 152 177 178 Tag getParent(); 179 180 181 183 184 221 222 int doStartTag() throws JspException; 223 224 225 251 252 int doEndTag() throws JspException; 253 254 260 261 void release(); 262 263 } 264 | Popular Tags |