KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > taglib > XMLConsumerTagSupport


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 package org.apache.cocoon.taglib;
17
18 import org.xml.sax.Attributes JavaDoc;
19 import org.xml.sax.Locator JavaDoc;
20 import org.xml.sax.SAXException JavaDoc;
21
22 /**
23  * @author <a HREF="mailto:volker.schmitt@basf-it-services.com">Volker Schmitt</a>
24  * @version CVS $Id: XMLConsumerTagSupport.java 158423 2005-03-21 09:15:22Z cziegeler $
25  */

26 public abstract class XMLConsumerTagSupport extends VarTagSupport implements XMLConsumerTag {
27
28     /*
29      * @see ContentHandler#characters(char[], int, int)
30      */

31     public void characters(char[] ch, int start, int length) throws SAXException JavaDoc {
32         // nothing to do here
33
}
34
35     /*
36      * @see ContentHandler#endDocument()
37      */

38     public void endDocument() throws SAXException JavaDoc {
39         // nothing to do here
40
}
41
42     /*
43      * @see ContentHandler#endElement(String, String, String)
44      */

45     public void endElement(String JavaDoc namespaceURI, String JavaDoc localName, String JavaDoc qName) throws SAXException JavaDoc {
46         // nothing to do here
47
}
48
49     /*
50      * @see ContentHandler#endPrefixMapping(String)
51      */

52     public void endPrefixMapping(String JavaDoc prefix) throws SAXException JavaDoc {
53         // nothing to do here
54
}
55
56     /*
57      * @see ContentHandler#ignorableWhitespace(char[], int, int)
58      */

59     public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException JavaDoc {
60         // nothing to do here
61
}
62
63     /*
64      * @see ContentHandler#processingInstruction(String, String)
65      */

66     public void processingInstruction(String JavaDoc target, String JavaDoc data) throws SAXException JavaDoc {
67         // nothing to do here
68
}
69
70     /*
71      * @see ContentHandler#setDocumentLocator(Locator)
72      */

73     public void setDocumentLocator(Locator JavaDoc locator) {
74         // nothing to do here
75
}
76
77     /*
78      * @see ContentHandler#skippedEntity(String)
79      */

80     public void skippedEntity(String JavaDoc name) throws SAXException JavaDoc {
81         // nothing to do here
82
}
83
84     /*
85      * @see ContentHandler#startDocument()
86      */

87     public void startDocument() throws SAXException JavaDoc {
88         // nothing to do here
89
}
90
91     /*
92      * @see ContentHandler#startElement(String, String, String, Attributes)
93      */

94     public void startElement(String JavaDoc namespaceURI, String JavaDoc localName, String JavaDoc qName, Attributes JavaDoc atts) throws SAXException JavaDoc {
95         // nothing to do here
96
}
97
98     /*
99      * @see ContentHandler#startPrefixMapping(String, String)
100      */

101     public void startPrefixMapping(String JavaDoc prefix, String JavaDoc uri) throws SAXException JavaDoc {
102         // nothing to do here
103
}
104
105     /*
106      * @see LexicalHandler#comment(char[], int, int)
107      */

108     public void comment(char[] ch, int start, int length) throws SAXException JavaDoc {
109         // nothing to do here
110
}
111
112     /*
113      * @see LexicalHandler#endCDATA()
114      */

115     public void endCDATA() throws SAXException JavaDoc {
116         // nothing to do here
117
}
118
119     /*
120      * @see LexicalHandler#endDTD()
121      */

122     public void endDTD() throws SAXException JavaDoc {
123         // nothing to do here
124
}
125
126     /*
127      * @see LexicalHandler#endEntity(String)
128      */

129     public void endEntity(String JavaDoc name) throws SAXException JavaDoc {
130         // nothing to do here
131
}
132
133     /*
134      * @see LexicalHandler#startCDATA()
135      */

136     public void startCDATA() throws SAXException JavaDoc {
137         // nothing to do here
138
}
139
140     /*
141      * @see LexicalHandler#startDTD(String, String, String)
142      */

143     public void startDTD(String JavaDoc name, String JavaDoc publicId, String JavaDoc systemId) throws SAXException JavaDoc {
144         // nothing to do here
145
}
146
147     /*
148      * @see LexicalHandler#startEntity(String)
149      */

150     public void startEntity(String JavaDoc name) throws SAXException JavaDoc {
151         // nothing to do here
152
}
153
154 }
155
Popular Tags