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