KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > taglibs > gnat > excludeTag


1 /*
2  * Copyright 1999,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.apache.taglibs.gnat;
18
19 import org.apache.taglibs.gnat.util.*;
20 import javax.servlet.ServletContext JavaDoc;
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 JavaDoc 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 JavaDoc 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 JavaDoc ctx = pageContext.getServletContext();
51
52         return EVAL_PAGE;
53     }
54     
55     public String JavaDoc getName() { return name; }
56 }
57
Popular Tags