KickJava   Java API By Example, From Geeks To Geeks.

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


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 patternSetTag extends BodyTagSupport
27 {
28     private String JavaDoc includes = "";
29     private String JavaDoc excludes = "";
30     private String JavaDoc includesFile = "";
31     private String JavaDoc excludesFile = "";
32     private ResourceBundle gnatRB = ListResourceBundle.getBundle("org.apache.taglibs.gnat.util.GnatTagStrings");
33     private ResourceBundle gnatERB = ListResourceBundle.getBundle("org.apache.taglibs.gnat.util.GnatExceptionStrings");
34     
35     public void setExcludes(String JavaDoc excludes) {
36         this.excludes = excludes;
37     }
38     
39     public void setIncludes(String JavaDoc includes) {
40         this.includes = includes;
41     }
42     
43     public void setExcludesFile(String JavaDoc excludesFile) {
44         this.excludesFile = excludesFile;
45     }
46         
47     public void setIncludesFile(String JavaDoc includesFile) {
48         this.includesFile = includesFile;
49     }
50     
51     public int doStartTag() throws JspException
52     {
53         return SKIP_BODY;
54     }
55     
56     public int doEndTag() throws JspException
57     {
58         
59         if (false)
60         {
61             throw new JspTagException( gnatRB.getString("mkdir.tag") + ": " +
62                                        gnatERB.getString("empty.dir.attribute") );
63         }
64         
65         ServletContext JavaDoc ctx = pageContext.getServletContext();
66
67         return EVAL_PAGE;
68     }
69     
70     public String JavaDoc getExcludes() { return excludes; }
71     public String JavaDoc getIncludes() { return includes; }
72     public String JavaDoc getExcludesFile() { return excludesFile; }
73     public String JavaDoc getIncludesFile() { return includesFile; }
74 }
75
Popular Tags