HomeSort by relevance Sort by last modified time
    Searched refs:SAXNotSupportedException (Results 1 - 25 of 57) sorted by null

1 2 3

  /libcore/luni/src/main/java/org/xml/sax/
SAXNotSupportedException.java 0 // SAXNotSupportedException.java - unsupported feature or value.
5 // $Id: SAXNotSupportedException.java,v 1.7 2002/01/30 21:13:48 dbrownell Exp $
29 public class SAXNotSupportedException extends SAXException
35 public SAXNotSupportedException ()
45 public SAXNotSupportedException (String message)
52 // end of SAXNotSupportedException.java
XMLReader.java 121 * @exception org.xml.sax.SAXNotSupportedException When the
127 throws SAXNotRecognizedException, SAXNotSupportedException;
148 * @exception org.xml.sax.SAXNotSupportedException When the
154 throws SAXNotRecognizedException, SAXNotSupportedException;
177 * @exception org.xml.sax.SAXNotSupportedException When the
183 throws SAXNotRecognizedException, SAXNotSupportedException;
207 * @exception org.xml.sax.SAXNotSupportedException When the
212 throws SAXNotRecognizedException, SAXNotSupportedException;
  /libcore/luni/src/test/java/tests/api/org/xml/sax/
SAXNotSupportedExceptionTest.java 21 import org.xml.sax.SAXNotSupportedException;
28 SAXNotSupportedException e = new SAXNotSupportedException();
33 SAXNotSupportedException e = new SAXNotSupportedException(ERR);
36 e = new SAXNotSupportedException(null);
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 28 import org.xml.sax.SAXNotSupportedException;
334 * @exception org.xml.sax.SAXNotSupportedException When the
341 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
368 * @exception org.xml.sax.SAXNotSupportedException When the
376 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
400 * @exception org.xml.sax.SAXNotSupportedException When the
406 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
432 * @exception org.xml.sax.SAXNotSupportedException When the
439 public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
ValidatorHandler.java 25 import org.xml.sax.SAXNotSupportedException;
342 * @exception org.xml.sax.SAXNotSupportedException When the
349 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
376 * @exception org.xml.sax.SAXNotSupportedException When the
384 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
409 * @exception org.xml.sax.SAXNotSupportedException When the
415 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
441 * @exception org.xml.sax.SAXNotSupportedException When the
448 public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
SchemaFactory.java 30 import org.xml.sax.SAXNotSupportedException;
260 * @exception org.xml.sax.SAXNotSupportedException When the
267 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
308 * @exception org.xml.sax.SAXNotSupportedException When the
316 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
337 * @exception org.xml.sax.SAXNotSupportedException When the
343 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
367 * @exception org.xml.sax.SAXNotSupportedException When the
374 public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserImpl.java 27 import org.xml.sax.SAXNotSupportedException;
41 throws SAXNotRecognizedException, SAXNotSupportedException {
49 throws SAXNotSupportedException, SAXNotRecognizedException {
65 } catch (SAXNotSupportedException e) {
81 SAXNotSupportedException {
106 throws SAXNotRecognizedException, SAXNotSupportedException {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 81 SAXNotSupportedException
100 SAXNotSupportedException
SAXParserImpl.java 89 throws SAXNotRecognizedException, SAXNotSupportedException
95 throws SAXNotRecognizedException, SAXNotSupportedException
103 throws SAXNotRecognizedException, SAXNotSupportedException
109 throws SAXNotRecognizedException, SAXNotSupportedException
SAX1ParserAdapter.java 89 throw new SAXNotSupportedException("TagSoup does not implement setLocale() method");
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 28 import org.xml.sax.SAXNotSupportedException;
50 SAXNotSupportedException {
56 SAXNotSupportedException {
71 SAXNotSupportedException {
MockReader.java 32 import org.xml.sax.SAXNotSupportedException;
78 SAXNotSupportedException {
83 SAXNotSupportedException {
120 SAXNotSupportedException {
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParserFactory.java 26 import org.xml.sax.SAXNotSupportedException;
210 * @exception SAXNotSupportedException When the underlying XMLReader
219 SAXNotSupportedException;
232 * @exception SAXNotSupportedException When the underlying XMLReader recognizes the property name but doesn't support the property.
238 SAXNotSupportedException;
SAXParser.java 31 import org.xml.sax.SAXNotSupportedException;
448 * @throws SAXNotSupportedException When the underlying XMLReader
454 throws SAXNotRecognizedException, SAXNotSupportedException;
465 * @throws SAXNotSupportedException When the underlying XMLReader
471 throws SAXNotRecognizedException, SAXNotSupportedException;
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 30 import org.xml.sax.SAXNotSupportedException;
68 throws SAXNotRecognizedException, SAXNotSupportedException {
95 throws SAXNotRecognizedException, SAXNotSupportedException {
104 throw new SAXNotSupportedException("Cannot enable " + name);
126 throw new SAXNotSupportedException("Cannot disable " + name);
134 throws SAXNotRecognizedException, SAXNotSupportedException {
147 throws SAXNotRecognizedException, SAXNotSupportedException {
158 throw new SAXNotSupportedException("value doesn't implement " +
258 throw new SAXNotSupportedException("The 'namespace-prefix' " +
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserFactoryTest.java 35 import org.xml.sax.SAXNotSupportedException;
173 // SAXNotSupportedException since these are never
189 } catch (SAXNotSupportedException snse) {
190 fail("SAXNotSupportedException is thrown");
201 } catch (SAXNotSupportedException snse) {
202 fail("SAXNotSupportedException is thrown");
213 } catch (SAXNotSupportedException snse) {
226 } catch (SAXNotSupportedException snse) {
227 fail("SAXNotSupportedException is thrown");
403 SAXNotSupportedException {
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 19 import org.xml.sax.SAXNotSupportedException;
148 * @exception org.xml.sax.SAXNotSupportedException When the
153 throws SAXNotRecognizedException, SAXNotSupportedException
172 * @exception org.xml.sax.SAXNotSupportedException When the
177 throws SAXNotRecognizedException, SAXNotSupportedException
196 * @exception org.xml.sax.SAXNotSupportedException When the
201 throws SAXNotRecognizedException, SAXNotSupportedException
218 * @exception org.xml.sax.SAXNotSupportedException When the
223 throws SAXNotRecognizedException, SAXNotSupportedException
ParserAdapter.java 24 import org.xml.sax.SAXNotSupportedException;
172 * @exception SAXNotSupportedException If the feature
177 throws SAXNotRecognizedException, SAXNotSupportedException
210 * @exception SAXNotSupportedException If the
215 throws SAXNotRecognizedException, SAXNotSupportedException
238 * @exception SAXNotSupportedException If the property
243 throws SAXNotRecognizedException, SAXNotSupportedException
258 * @exception SAXNotSupportedException If the property
263 throws SAXNotRecognizedException, SAXNotSupportedException
796 * @exception SAXNotSupportedException If
    [all...]
XMLReaderAdapter.java 22 import org.xml.sax.SAXNotSupportedException;
128 throw new SAXNotSupportedException("setLocale not supported");
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 29 import org.xml.sax.SAXNotSupportedException;
170 throws SAXNotRecognizedException, SAXNotSupportedException
189 throws SAXNotRecognizedException, SAXNotSupportedException
203 // // throw new SAXNotSupportedException("schema validation is not supported");
207 // throw new SAXNotSupportedException("dynamic validation is not supported");
214 // throw new SAXNotSupportedException("problem with setting feature "+name+": "+ex);
219 throws SAXNotRecognizedException, SAXNotSupportedException
232 throws SAXNotRecognizedException, SAXNotSupportedException
236 throw new SAXNotSupportedException("not supported setting property "+name);//+" to "+value);
238 throw new SAXNotSupportedException("not supported setting property "+name);//+" to "+value)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 34 import org.xml.sax.SAXNotSupportedException;
132 } catch (SAXNotSupportedException e) {
143 } catch (SAXNotSupportedException e) {
152 } catch (SAXNotSupportedException e) {
XMLFilterImplTest.java 32 import org.xml.sax.SAXNotSupportedException;
108 } catch (SAXNotSupportedException e) {
118 } catch (SAXNotSupportedException e) {
133 } catch (SAXNotSupportedException e) {
143 } catch (SAXNotSupportedException e) {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 317 throws SAXNotRecognizedException, SAXNotSupportedException {
326 throws SAXNotRecognizedException, SAXNotSupportedException {
346 throws SAXNotRecognizedException, SAXNotSupportedException {
365 throws SAXNotRecognizedException, SAXNotSupportedException {
374 throw new SAXNotSupportedException("Your lexical handler is not a LexicalHandler");
382 throw new SAXNotSupportedException("Your scanner is not a Scanner");
390 throw new SAXNotSupportedException("Your schema is not a Schema");
398 throw new SAXNotSupportedException("Your auto-detector is not an AutoDetector");
    [all...]
  /prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 

Completed in 1078 milliseconds

1 2 3