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

1 2

  /libcore/luni/src/main/java/org/xml/sax/
SAXNotRecognizedException.java 0 // SAXNotRecognizedException.java - unrecognized feature or value.
5 // $Id: SAXNotRecognizedException.java,v 1.7 2002/01/30 21:13:48 dbrownell Exp $
29 public class SAXNotRecognizedException extends SAXException
35 public SAXNotRecognizedException ()
45 public SAXNotRecognizedException (String message)
52 // end of SAXNotRecognizedException.java
XMLReader.java 119 * @exception org.xml.sax.SAXNotRecognizedException If the feature
127 throws SAXNotRecognizedException, SAXNotSupportedException;
146 * @exception org.xml.sax.SAXNotRecognizedException If the feature
154 throws SAXNotRecognizedException, SAXNotSupportedException;
175 * @exception org.xml.sax.SAXNotRecognizedException If the property
183 throws SAXNotRecognizedException, SAXNotSupportedException;
205 * @exception org.xml.sax.SAXNotRecognizedException If the property
212 throws SAXNotRecognizedException, SAXNotSupportedException;
  /libcore/luni/src/test/java/tests/api/org/xml/sax/
SAXNotRecognizedExceptionTest.java 21 import org.xml.sax.SAXNotRecognizedException;
28 SAXNotRecognizedException e = new SAXNotRecognizedException();
33 SAXNotRecognizedException e = new SAXNotRecognizedException(ERR);
36 e = new SAXNotRecognizedException(null);
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 27 import org.xml.sax.SAXNotRecognizedException;
332 * @exception org.xml.sax.SAXNotRecognizedException If the feature
341 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
343 throw new SAXNotRecognizedException(name);
364 * @exception org.xml.sax.SAXNotRecognizedException If the feature
374 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
376 throw new SAXNotRecognizedException(name);
394 * @exception org.xml.sax.SAXNotRecognizedException If the property
402 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
404 throw new SAXNotRecognizedException(name)
    [all...]
ValidatorHandler.java 24 import org.xml.sax.SAXNotRecognizedException;
340 * @exception org.xml.sax.SAXNotRecognizedException If the feature
349 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
352 throw new SAXNotRecognizedException(name);
373 * @exception org.xml.sax.SAXNotRecognizedException If the feature
383 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
386 throw new SAXNotRecognizedException(name);
405 * @exception org.xml.sax.SAXNotRecognizedException If the property
413 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
416 throw new SAXNotRecognizedException(name)
    [all...]
SchemaFactory.java 29 import org.xml.sax.SAXNotRecognizedException;
256 * @exception org.xml.sax.SAXNotRecognizedException If the feature
265 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
270 throw new SAXNotRecognizedException(name);
304 * @exception org.xml.sax.SAXNotRecognizedException If the feature
314 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
318 throw new SAXNotRecognizedException(name);
333 * @exception org.xml.sax.SAXNotRecognizedException If the property
341 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
345 throw new SAXNotRecognizedException(name)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 24 import org.xml.sax.SAXNotRecognizedException;
42 public boolean getFeature(String name) throws SAXNotRecognizedException {
48 throw new SAXNotRecognizedException(name);
58 } catch (SAXNotRecognizedException ex) {
67 } catch (SAXNotRecognizedException ex) {
87 public void setFeature(String name, boolean value) throws SAXNotRecognizedException {
93 throw new SAXNotRecognizedException(name);
108 } catch (SAXNotRecognizedException ex) {
117 } catch (SAXNotRecognizedException ex) {
SAXParserImpl.java 26 import org.xml.sax.SAXNotRecognizedException;
41 throws SAXNotRecognizedException, SAXNotSupportedException {
49 throws SAXNotSupportedException, SAXNotRecognizedException {
63 } catch (SAXNotRecognizedException e) {
80 public Object getProperty(String name) throws SAXNotRecognizedException,
106 throws SAXNotRecognizedException, SAXNotSupportedException {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 80 throws ParserConfigurationException, SAXNotRecognizedException,
99 throws ParserConfigurationException, SAXNotRecognizedException,
SAXParserImpl.java 89 throws SAXNotRecognizedException, SAXNotSupportedException
95 throws SAXNotRecognizedException, SAXNotSupportedException
103 throws SAXNotRecognizedException, SAXNotSupportedException
109 throws SAXNotRecognizedException, SAXNotSupportedException
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 27 import org.xml.sax.SAXNotRecognizedException;
49 public boolean getFeature(String name) throws SAXNotRecognizedException,
55 public Object getProperty(String name) throws SAXNotRecognizedException,
70 public void setProperty(String name, Object value) throws SAXNotRecognizedException,
MockReader.java 31 import org.xml.sax.SAXNotRecognizedException;
77 public boolean getFeature(String name) throws SAXNotRecognizedException,
82 public Object getProperty(String name) throws SAXNotRecognizedException,
119 public void setProperty(String name, Object value) throws SAXNotRecognizedException,
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParserFactory.java 25 import org.xml.sax.SAXNotRecognizedException;
208 * @exception SAXNotRecognizedException When the underlying XMLReader does
218 throws ParserConfigurationException, SAXNotRecognizedException,
231 * @exception SAXNotRecognizedException When the underlying XMLReader does not recognize the property name.
237 throws ParserConfigurationException, SAXNotRecognizedException,
SAXParser.java 30 import org.xml.sax.SAXNotRecognizedException;
446 * @throws SAXNotRecognizedException When the underlying XMLReader does
454 throws SAXNotRecognizedException, SAXNotSupportedException;
463 * @throws SAXNotRecognizedException When the underlying XMLReader does
471 throws SAXNotRecognizedException, SAXNotSupportedException;
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 29 import org.xml.sax.SAXNotRecognizedException;
68 throws SAXNotRecognizedException, SAXNotSupportedException {
91 throw new SAXNotRecognizedException(name);
95 throws SAXNotRecognizedException, SAXNotSupportedException {
130 throw new SAXNotRecognizedException(name);
134 throws SAXNotRecognizedException, SAXNotSupportedException {
143 throw new SAXNotRecognizedException(name);
147 throws SAXNotRecognizedException, SAXNotSupportedException {
162 throw new SAXNotRecognizedException(name);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 18 import org.xml.sax.SAXNotRecognizedException;
146 * @exception org.xml.sax.SAXNotRecognizedException If the feature
153 throws SAXNotRecognizedException, SAXNotSupportedException
158 throw new SAXNotRecognizedException("Feature: " + name);
170 * @exception org.xml.sax.SAXNotRecognizedException If the feature
177 throws SAXNotRecognizedException, SAXNotSupportedException
182 throw new SAXNotRecognizedException("Feature: " + name);
194 * @exception org.xml.sax.SAXNotRecognizedException If the property
201 throws SAXNotRecognizedException, SAXNotSupportedException
206 throw new SAXNotRecognizedException("Property: " + name)
    [all...]
ParserAdapter.java 23 import org.xml.sax.SAXNotRecognizedException;
170 * @exception SAXNotRecognizedException If the feature
177 throws SAXNotRecognizedException, SAXNotSupportedException
195 throw new SAXNotRecognizedException("Feature: " + name);
208 * @exception SAXNotRecognizedException If the feature
215 throws SAXNotRecognizedException, SAXNotSupportedException
224 throw new SAXNotRecognizedException("Feature: " + name);
236 * @exception SAXNotRecognizedException If the property
243 throws SAXNotRecognizedException, SAXNotSupportedException
245 throw new SAXNotRecognizedException("Property: " + name)
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserFactoryTest.java 34 import org.xml.sax.SAXNotRecognizedException;
187 } catch (SAXNotRecognizedException snre) {
188 fail("SAXNotRecognizedException is thrown");
196 fail("SAXNotRecognizedException is not thrown");
199 } catch (SAXNotRecognizedException snre) {
211 } catch (SAXNotRecognizedException snre) {
212 fail("SAXNotRecognizedException is thrown");
224 } catch (SAXNotRecognizedException snre) {
225 fail("SAXNotRecognizedException is thrown");
402 ParserConfigurationException, SAXNotRecognizedException,
    [all...]
SAXParserTest.java 34 import org.xml.sax.SAXNotRecognizedException;
67 public Object getProperty(String name) throws SAXNotRecognizedException,
106 SAXNotRecognizedException, SAXNotSupportedException {
883 fail("SAXNotRecognizedException expected");
884 } catch (SAXNotRecognizedException e) {
    [all...]
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/xml/
XmlDocumentBuilder.java 33 import org.xml.sax.SAXNotRecognizedException;
139 } catch (SAXNotRecognizedException e) {
160 } catch (SAXNotRecognizedException e) {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 33 import org.xml.sax.SAXNotRecognizedException;
129 fail("SAXNotRecognizedException expected");
130 } catch (SAXNotRecognizedException e) {
140 fail("SAXNotRecognizedException expected");
141 } catch (SAXNotRecognizedException e) {
149 fail("SAXNotRecognizedException expected");
150 } catch (SAXNotRecognizedException e) {
XMLFilterImplTest.java 31 import org.xml.sax.SAXNotRecognizedException;
106 } catch (SAXNotRecognizedException e) {
115 fail("SAXNotRecognizedException expected");
116 } catch (SAXNotRecognizedException e) {
131 } catch (SAXNotRecognizedException e) {
140 fail("SAXNotRecognizedException expected");
141 } catch (SAXNotRecognizedException e) {
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 28 import org.xml.sax.SAXNotRecognizedException;
170 throws SAXNotRecognizedException, SAXNotSupportedException
184 //throw new SAXNotRecognizedException("unrecognized feature "+name);
189 throws SAXNotRecognizedException, SAXNotSupportedException
211 //throw new SAXNotRecognizedException("unrecognized feature "+name);
219 throws SAXNotRecognizedException, SAXNotSupportedException
227 //throw new SAXNotRecognizedException("not recognized get property "+name);
232 throws SAXNotRecognizedException, SAXNotSupportedException
245 //throw new SAXNotRecognizedException("not recognized set property "+name);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 317 throws SAXNotRecognizedException, SAXNotSupportedException {
320 throw new SAXNotRecognizedException("Unknown feature " + name);
326 throws SAXNotRecognizedException, SAXNotSupportedException {
329 throw new SAXNotRecognizedException("Unknown feature " + name);
346 throws SAXNotRecognizedException, SAXNotSupportedException {
360 throw new SAXNotRecognizedException("Unknown property " + name);
365 throws SAXNotRecognizedException, SAXNotSupportedException {
402 throw new SAXNotRecognizedException("Unknown property " + name);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMManagerDefault.java 51 import org.xml.sax.SAXNotRecognizedException;
435 } catch (SAXNotRecognizedException e){}

Completed in 399 milliseconds

1 2