1 16 17 package org.apache.taglibs.gnat; 18 19 import org.apache.taglibs.gnat.util.*; 20 import javax.servlet.ServletContext ; 21 import javax.servlet.jsp.*; 22 import javax.servlet.jsp.tagext.*; 23 import java.io.*; 24 import java.util.*; 25 26 public class excludeTag extends TagSupport 27 { 28 private String name = ""; 29 private ResourceBundle gnatRB = ListResourceBundle.getBundle("org.apache.taglibs.gnat.util.GnatTagStrings"); 30 private ResourceBundle gnatERB = ListResourceBundle.getBundle("org.apache.taglibs.gnat.util.GnatExceptionStrings"); 31 32 public void setName(String name) { 33 this.name = name; 34 } 35 36 public int doStartTag() throws JspException 37 { 38 return SKIP_BODY; 39 } 40 41 public int doEndTag() throws JspException 42 { 43 44 if (false) 45 { 46 throw new JspTagException( gnatRB.getString("mkdir.tag") + ": " + 47 gnatERB.getString("empty.dir.attribute") ); 48 } 49 50 ServletContext ctx = pageContext.getServletContext(); 51 52 return EVAL_PAGE; 53 } 54 55 public String getName() { return name; } 56 } 57 | Popular Tags |