Searched refs:SAXException (Results 1 - 25 of 475) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/org/xml/sax/ext/
H A DLexicalHandler.java33 import org.xml.sax.SAXException;
104 * @exception SAXException The application may raise an
111 throws SAXException;
121 * @exception SAXException The application may raise an exception.
125 throws SAXException;
172 * @exception SAXException The application may raise an exception.
178 throws SAXException;
185 * @exception SAXException The application may raise an exception.
189 throws SAXException;
200 * @exception SAXException Th
[all...]
H A DDeclHandler.java33 import org.xml.sax.SAXException;
89 * @exception SAXException The application may raise an exception.
92 throws SAXException;
118 * @exception SAXException The application may raise an exception.
125 throws SAXException;
138 * @exception SAXException The application may raise an exception.
143 throws SAXException;
160 * @exception SAXException The application may raise an exception.
166 throws SAXException;
H A DDefaultHandler2.java35 import org.xml.sax.SAXException;
71 throws SAXException
75 throws SAXException
79 throws SAXException
83 throws SAXException
87 throws SAXException
91 throws SAXException
95 throws SAXException
103 throws SAXException
107 throws SAXException
[all...]
/openjdk7/jaxp/src/org/xml/sax/
H A DDocumentHandler.java109 * @exception org.xml.sax.SAXException Any SAX exception, possibly
113 throws SAXException;
125 * @exception org.xml.sax.SAXException Any SAX exception, possibly
129 throws SAXException;
149 * @exception org.xml.sax.SAXException Any SAX exception, possibly
155 throws SAXException;
170 * @exception org.xml.sax.SAXException Any SAX exception, possibly
174 throws SAXException;
197 * @exception org.xml.sax.SAXException Any SAX exception, possibly
203 throws SAXException;
[all...]
H A DErrorHandler.java93 * @exception org.xml.sax.SAXException Any SAX exception, possibly
98 throws SAXException;
122 * @exception org.xml.sax.SAXException Any SAX exception, possibly
127 throws SAXException;
154 * @exception org.xml.sax.SAXException Any SAX exception, possibly
159 throws SAXException;
H A DHandlerBase.java93 * @exception org.xml.sax.SAXException Any SAX exception, possibly
98 throws SAXException
181 * @exception org.xml.sax.SAXException Any SAX exception, possibly
186 throws SAXException
200 * @exception org.xml.sax.SAXException Any SAX exception, possibly
205 throws SAXException
221 * @exception org.xml.sax.SAXException Any SAX exception, possibly
226 throws SAXException
241 * @exception org.xml.sax.SAXException Any SAX exception, possibly
246 throws SAXException
[all...]
H A DContentHandler.java122 * @throws org.xml.sax.SAXException any SAX exception, possibly
127 throws SAXException;
147 * @throws org.xml.sax.SAXException any SAX exception, possibly
152 throws SAXException;
188 * @throws org.xml.sax.SAXException the client may throw
194 throws SAXException;
208 * @throws org.xml.sax.SAXException the client may throw
214 throws SAXException;
275 * @throws org.xml.sax.SAXException any SAX exception, possibly
283 throws SAXException;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DPrimitiveTypeContentHandler.java30 import org.xml.sax.SAXException;
85 * @throws org.xml.sax.SAXException any SAX exception, possibly
88 public void booleans(boolean [] b, int start, int length) throws SAXException;
109 * @throws org.xml.sax.SAXException any SAX exception, possibly
112 public void bytes(byte[] b, int start, int length) throws SAXException;
127 * @throws org.xml.sax.SAXException any SAX exception, possibly
130 public void shorts(short[] s, int start, int length) throws SAXException;
145 * @throws org.xml.sax.SAXException any SAX exception, possibly
148 public void ints(int [] i, int start, int length) throws SAXException;
163 * @throws org.xml.sax.SAXException an
[all...]
H A DRestrictedAlphabetContentHandler.java30 import org.xml.sax.SAXException;
34 public void numericCharacters(char ch[], int start, int length) throws SAXException;
36 public void dateTimeCharacters(char ch[], int start, int length) throws SAXException;
38 public void alphabetCharacters(String alphabet, char ch[], int start, int length) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDEventListener.java29 import org.xml.sax.SAXException;
50 * @throws SAXException
53 throws SAXException;
66 throws SAXException;
79 throws SAXException;
88 * @throws SAXException
92 throws SAXException;
106 * @throws SAXException
111 throws SAXException;
121 * @throws SAXException
[all...]
H A DDTDHandlerBase.java29 import org.xml.sax.SAXException;
38 throws SAXException {
44 public void fatalError(SAXParseException e) throws SAXException {
48 public void error(SAXParseException e) throws SAXException {
52 public void warning(SAXParseException err) throws SAXException {
55 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
59 String systemId, String notationName) throws SAXException {
62 public void endDTD() throws SAXException {
65 public void externalGeneralEntityDecl(String n, String p, String s) throws SAXException {
68 public void internalGeneralEntityDecl(String n, String v) throws SAXException {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/unmarshaller/
H A DPatcher.java28 import org.xml.sax.SAXException;
41 * @throws SAXException
43 * The context may then throw a {@link SAXException} to abort the processing,
44 * and that's when you can throw a {@link SAXException}.
46 void run() throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DXmlVisitor.java30 import org.xml.sax.SAXException;
61 * The visitor may throw {@link SAXException} to abort the unmarshalling process
86 void startDocument(LocatorEx locator, NamespaceContext nsContext) throws SAXException;
87 void endDocument() throws SAXException;
94 void startElement(TagName tagName) throws SAXException;
95 void endElement(TagName tagName) throws SAXException;
100 void startPrefixMapping( String prefix, String nsUri ) throws SAXException;
104 void endPrefixMapping( String prefix ) throws SAXException;
120 void text( CharSequence pcdata ) throws SAXException;
H A DPatcher.java28 import org.xml.sax.SAXException;
34 void run() throws SAXException;
H A DReceiver.java28 import org.xml.sax.SAXException;
44 void receive(UnmarshallingContext.State state, Object o) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/helpers/
H A DFastInfosetDefaultHandler.java31 import org.xml.sax.SAXException;
55 public void comment(char[] ch, int start, int length) throws SAXException {
58 public void startCDATA() throws SAXException {
61 public void endCDATA() throws SAXException {
64 public void startDTD(String name, String publicId, String systemId) throws SAXException {
67 public void endDTD() throws SAXException {
70 public void startEntity(String name) throws SAXException {
73 public void endEntity(String name) throws SAXException {
79 public void octets(String URI, int algorithm, byte[] b, int start, int length) throws SAXException {
82 public void object(String URI, int algorithm, Object o) throws SAXException {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/xml/sax/
H A DAbstractLexicalHandler.java49 import org.xml.sax.SAXException;
52 public void startDTD(String s, String s1, String s2) throws SAXException {
55 public void endDTD() throws SAXException {
58 public void startEntity(String s) throws SAXException {
61 public void endEntity(String s) throws SAXException {
64 public void startCDATA() throws SAXException {
67 public void endCDATA() throws SAXException {
70 public void comment(char[] chars, int start, int length) throws SAXException {
H A DXMLReaderCreator.java48 import org.xml.sax.SAXException;
62 * @throws org.xml.sax.SAXException If an <code>XMLReader</code> cannot be created for any reason
64 XMLReader createXMLReader() throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DDefaultWithLexicalHandler.java28 import org.xml.sax.SAXException;
34 public void comment(char[] ch, int start, int length) throws SAXException { }
36 public void startDTD(String name, String publicId, String systemId) throws SAXException { }
38 public void endDTD() throws SAXException { }
40 public void startEntity(String name) throws SAXException { }
42 public void endEntity(String name) throws SAXException { }
44 public void startCDATA() throws SAXException { }
46 public void endCDATA() throws SAXException { }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DPatch.java28 import org.xml.sax.SAXException;
34 * allows the program to throw a SAXException.
37 void run() throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventReceiver.java29 import org.xml.sax.SAXException;
37 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException;
38 void leaveElement(String uri, String localName, String qname) throws SAXException;
39 void text(String value) throws SAXException;
40 void enterAttribute(String uri, String localName, String qname) throws SAXException;
41 void leaveAttribute(String uri, String localName, String qname) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventReceiver.java29 import org.xml.sax.SAXException;
37 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException;
38 void leaveElement(String uri, String localName, String qname) throws SAXException;
39 void text(String value) throws SAXException;
40 void enterAttribute(String uri, String localName, String qname) throws SAXException;
41 void leaveAttribute(String uri, String localName, String qname) throws SAXException;
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DDefaultHandler.java43 import org.xml.sax.SAXException;
109 * @exception org.xml.sax.SAXException Any SAX exception, possibly
114 throws IOException, SAXException
137 * @exception org.xml.sax.SAXException Any SAX exception, possibly
142 throws SAXException
160 * @exception org.xml.sax.SAXException Any SAX exception, possibly
166 throws SAXException
203 * @exception org.xml.sax.SAXException Any SAX exception, possibly
208 throws SAXException
222 * @exception org.xml.sax.SAXException An
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDraconianErrorHandler.java64 import org.xml.sax.SAXException;
81 public void error(SAXParseException e) throws SAXException {
84 public void fatalError(SAXParseException e) throws SAXException {
87 public void warning(SAXParseException e) throws SAXException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DDraconianValidationErrorHandler.java30 import org.xml.sax.SAXException;
33 * Default {@link ValidationErrorHandler} that just rethrows SAXException
40 public void warning(SAXParseException e) throws SAXException {
44 public void error(SAXParseException e) throws SAXException {
48 public void fatalError(SAXParseException e) throws SAXException {

Completed in 61 milliseconds

1234567891011>>