KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > caucho > xml > stream > FilteredStreamReader


1 /*
2  * Copyright (c) 1998-2006 Caucho Technology -- all rights reserved
3  *
4  * This file is part of Resin(R) Open Source
5  *
6  * Each copy or derived work must preserve the copyright notice and this
7  * notice unmodified.
8  *
9  * Resin Open Source is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Resin Open Source is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
17  * of NON-INFRINGEMENT. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with Resin Open Source; if not, write to the
22  *
23  * Free Software Foundation, Inc.
24  * 59 Temple Place, Suite 330
25  * Boston, MA 02111-1307 USA
26  *
27  * @author Adam Megacz
28  */

29
30 package com.caucho.xml.stream;
31
32 import javax.xml.namespace.NamespaceContext JavaDoc;
33 import javax.xml.namespace.QName JavaDoc;
34 import javax.xml.stream.Location;
35 import javax.xml.stream.StreamFilter;
36 import javax.xml.stream.XMLStreamException;
37 import javax.xml.stream.XMLStreamReader;
38
39 class FilteredStreamReader implements XMLStreamReader {
40
41   public FilteredStreamReader(XMLStreamReader reader,
42                               StreamFilter filter)
43   {
44     throw new UnsupportedOperationException JavaDoc();
45   }
46
47   public void close() throws XMLStreamException
48   {
49     throw new UnsupportedOperationException JavaDoc();
50   }
51
52   public int getAttributeCount()
53   {
54     throw new UnsupportedOperationException JavaDoc();
55   }
56   
57   public String JavaDoc getAttributeLocalName(int index)
58   {
59     throw new UnsupportedOperationException JavaDoc();
60   }
61   
62   public QName JavaDoc getAttributeName(int index)
63   {
64     throw new UnsupportedOperationException JavaDoc();
65   }
66   
67   public String JavaDoc getAttributeNamespace(int index)
68   {
69     throw new UnsupportedOperationException JavaDoc();
70   }
71   
72   public String JavaDoc getAttributePrefix(int index)
73   {
74     throw new UnsupportedOperationException JavaDoc();
75   }
76   
77   public String JavaDoc getAttributeType(int index)
78   {
79     throw new UnsupportedOperationException JavaDoc();
80   }
81   
82   public String JavaDoc getAttributeValue(int index)
83   {
84     throw new UnsupportedOperationException JavaDoc();
85   }
86   
87   public String JavaDoc getAttributeValue(String JavaDoc namespaceURI, String JavaDoc localName)
88   {
89     throw new UnsupportedOperationException JavaDoc();
90   }
91   
92   public String JavaDoc getCharacterEncodingScheme()
93   {
94     throw new UnsupportedOperationException JavaDoc();
95   }
96   
97   public String JavaDoc getElementText() throws XMLStreamException
98   {
99     throw new UnsupportedOperationException JavaDoc();
100   }
101   
102   public String JavaDoc getEncoding()
103   {
104     throw new UnsupportedOperationException JavaDoc();
105   }
106   
107   public int getEventType()
108   {
109     throw new UnsupportedOperationException JavaDoc();
110   }
111   
112   public String JavaDoc getLocalName()
113   {
114     throw new UnsupportedOperationException JavaDoc();
115   }
116   
117   public Location getLocation()
118   {
119     throw new UnsupportedOperationException JavaDoc();
120   }
121   
122   public QName JavaDoc getName()
123   {
124     throw new UnsupportedOperationException JavaDoc();
125   }
126   
127   public NamespaceContext JavaDoc getNamespaceContext()
128   {
129     throw new UnsupportedOperationException JavaDoc();
130   }
131   
132   public int getNamespaceCount()
133   {
134     throw new UnsupportedOperationException JavaDoc();
135   }
136   
137   public String JavaDoc getNamespacePrefix(int index)
138   {
139     throw new UnsupportedOperationException JavaDoc();
140   }
141   
142   public String JavaDoc getNamespaceURI()
143   {
144     throw new UnsupportedOperationException JavaDoc();
145   }
146   
147   public String JavaDoc getNamespaceURI(int index)
148   {
149     throw new UnsupportedOperationException JavaDoc();
150   }
151   
152   public String JavaDoc getNamespaceURI(String JavaDoc prefix)
153   {
154     throw new UnsupportedOperationException JavaDoc();
155   }
156   
157   public String JavaDoc getPIData()
158   {
159     throw new UnsupportedOperationException JavaDoc();
160   }
161   
162   public String JavaDoc getPITarget()
163   {
164     throw new UnsupportedOperationException JavaDoc();
165   }
166   
167   public String JavaDoc getPrefix()
168   {
169     throw new UnsupportedOperationException JavaDoc();
170   }
171   
172   public Object JavaDoc getProperty(String JavaDoc name) throws IllegalArgumentException JavaDoc
173   {
174     throw new UnsupportedOperationException JavaDoc();
175   }
176   
177   public String JavaDoc getText()
178   {
179     throw new UnsupportedOperationException JavaDoc();
180   }
181   
182   public char[] getTextCharacters()
183   {
184     throw new UnsupportedOperationException JavaDoc();
185   }
186   
187   public int getTextCharacters(int sourceStart, char[] target,
188                                int targetStart, int length)
189     throws XMLStreamException
190   {
191     throw new UnsupportedOperationException JavaDoc();
192   }
193
194   public int getTextLength()
195   {
196     throw new UnsupportedOperationException JavaDoc();
197   }
198   
199   public int getTextStart()
200   {
201     throw new UnsupportedOperationException JavaDoc();
202   }
203   
204   public String JavaDoc getVersion()
205   {
206     throw new UnsupportedOperationException JavaDoc();
207   }
208   
209   public boolean hasName()
210   {
211     throw new UnsupportedOperationException JavaDoc();
212   }
213   
214   public boolean hasNext() throws XMLStreamException
215   {
216     throw new UnsupportedOperationException JavaDoc();
217   }
218
219   public boolean hasText()
220   {
221     throw new UnsupportedOperationException JavaDoc();
222   }
223   
224   public boolean isAttributeSpecified(int index)
225   {
226     throw new UnsupportedOperationException JavaDoc();
227   }
228   
229   public boolean isCharacters()
230   {
231     throw new UnsupportedOperationException JavaDoc();
232   }
233   
234   public boolean isEndElement()
235   {
236     throw new UnsupportedOperationException JavaDoc();
237   }
238   
239   public boolean isStandalone()
240   {
241     throw new UnsupportedOperationException JavaDoc();
242   }
243   
244   public boolean isStartElement()
245   {
246     throw new UnsupportedOperationException JavaDoc();
247   }
248   
249   public boolean isWhiteSpace()
250   {
251     throw new UnsupportedOperationException JavaDoc();
252   }
253   
254   public int next() throws XMLStreamException
255   {
256     throw new UnsupportedOperationException JavaDoc();
257   }
258   
259   public int nextTag() throws XMLStreamException
260   {
261     throw new UnsupportedOperationException JavaDoc();
262   }
263   
264   public void require(int type, String JavaDoc namespaceURI, String JavaDoc localName)
265     throws XMLStreamException
266   {
267     throw new UnsupportedOperationException JavaDoc();
268   }
269   
270   public boolean standaloneSet()
271   {
272     throw new UnsupportedOperationException JavaDoc();
273   }
274
275 }
276
Popular Tags