Searched refs:XMLStreamException (Results 1 - 25 of 214) sorted by relevance

123456789

/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamWriter.java82 * <code>XMLStreamException</code>
108 * <code>XMLStreamException</code><sup>[2]</sup>
136 * <code>XMLStreamException</code>
164 * <code>XMLStreamException</code>
181 * <li>[5] if prefix == "" || null, then it is treated as an invalid attempt to define the default Namespace and an XMLStreamException is thrown</li>
201 * @throws XMLStreamException
204 throws XMLStreamException;
210 * @throws XMLStreamException if the namespace URI has not been bound to a prefix and
214 throws XMLStreamException;
221 * @throws XMLStreamException
[all...]
H A DXMLEventWriter.java56 * @throws XMLStreamException
58 public void flush() throws XMLStreamException;
62 * @throws XMLStreamException
64 public void close() throws XMLStreamException;
117 * name an XMLStreamException is thrown.
190 * @throws XMLStreamException
192 public void add(XMLEvent event) throws XMLStreamException;
202 * @throws XMLStreamException
205 public void add(XMLEventReader reader) throws XMLStreamException;
210 * @throws XMLStreamException
[all...]
H A DXMLEventReader.java51 * @throws XMLStreamException if there is an error with the underlying XML.
54 public XMLEvent nextEvent() throws XMLStreamException;
68 * @throws XMLStreamException
70 public XMLEvent peek() throws XMLStreamException;
76 * @throws XMLStreamException if the current event is not a START_ELEMENT
79 public String getElementText() throws XMLStreamException;
88 * @throws XMLStreamException if anything other than space characters are encountered
90 public XMLEvent nextTag() throws XMLStreamException;
103 * @throws XMLStreamException if there are errors freeing associated resources
105 public void close() throws XMLStreamException;
[all...]
H A DXMLStreamException.java40 public class XMLStreamException extends Exception { class in inherits:Exception
48 public XMLStreamException(){ method in class:XMLStreamException
57 public XMLStreamException(String msg) { method in class:XMLStreamException
66 public XMLStreamException(Throwable th) { method in class:XMLStreamException
77 public XMLStreamException(String msg, Throwable th) { method in class:XMLStreamException
89 public XMLStreamException(String msg, Location location, Throwable th) { method in class:XMLStreamException
103 public XMLStreamException(String msg, method in class:XMLStreamException
H A DXMLReporter.java48 * Fatal errors should be thrown as XMLStreamException.
60 * @throws XMLStreamException
64 throws XMLStreamException;
H A DXMLStreamReader.java203 * @throws XMLStreamException if there is an error processing the underlying XML source
205 public int next() throws XMLStreamException;
214 * @throws XMLStreamException if the required values are not matched.
216 public void require(int type, String namespaceURI, String localName) throws XMLStreamException;
229 * throw new XMLStreamException(
244 * throw new XMLStreamException(
247 * throw new XMLStreamException(
250 * throw new XMLStreamException(
258 * @throws XMLStreamException if the current event is not a START_ELEMENT
261 public String getElementText() throws XMLStreamException;
[all...]
H A DXMLResolver.java53 * @throws XMLStreamException if there was a failure attempting to resolve the resource.
59 throws XMLStreamException;
H A DXMLOutputFactory.java223 * @throws XMLStreamException
225 public abstract XMLStreamWriter createXMLStreamWriter(java.io.Writer stream) throws XMLStreamException;
230 * @throws XMLStreamException
232 public abstract XMLStreamWriter createXMLStreamWriter(java.io.OutputStream stream) throws XMLStreamException;
238 * @throws XMLStreamException
241 String encoding) throws XMLStreamException;
248 * @throws XMLStreamException
250 public abstract XMLStreamWriter createXMLStreamWriter(Result result) throws XMLStreamException;
258 * @throws XMLStreamException
260 public abstract XMLEventWriter createXMLEventWriter(Result result) throws XMLStreamException;
[all...]
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DXMLEventConsumer.java32 import javax.xml.stream.XMLStreamException;
57 throws XMLStreamException;
H A DXMLEventAllocator.java33 import javax.xml.stream.XMLStreamException;
66 throws XMLStreamException;
80 throws XMLStreamException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DDelegatingXMLStreamWriter.java29 import javax.xml.stream.XMLStreamException;
44 public void writeStartElement(String localName) throws XMLStreamException {
48 public void writeStartElement(String namespaceURI, String localName) throws XMLStreamException {
52 public void writeStartElement(String prefix, String localName, String namespaceURI) throws XMLStreamException {
56 public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException {
60 public void writeEmptyElement(String prefix, String localName, String namespaceURI) throws XMLStreamException {
64 public void writeEmptyElement(String localName) throws XMLStreamException {
68 public void writeEndElement() throws XMLStreamException {
72 public void writeEndDocument() throws XMLStreamException {
76 public void close() throws XMLStreamException {
[all...]
H A DIndentingXMLStreamWriter.java28 import javax.xml.stream.XMLStreamException;
89 private void onStartElement() throws XMLStreamException {
99 private void onEndElement() throws XMLStreamException {
108 private void onEmptyElement() throws XMLStreamException {
123 private void doIndent() throws XMLStreamException {
131 public void writeStartDocument() throws XMLStreamException {
136 public void writeStartDocument(String version) throws XMLStreamException {
141 public void writeStartDocument(String encoding, String version) throws XMLStreamException {
146 public void writeStartElement(String localName) throws XMLStreamException {
151 public void writeStartElement(String namespaceURI, String localName) throws XMLStreamException {
[all...]
H A DStaxSerializer.java30 import javax.xml.stream.XMLStreamException;
57 } catch (XMLStreamException e) {
65 } catch (XMLStreamException e) {
73 } catch (XMLStreamException e) {
88 } catch (XMLStreamException e) {
100 } catch (XMLStreamException e) {
108 } catch (XMLStreamException e) {
116 } catch (XMLStreamException e) {
124 } catch (XMLStreamException e) {
133 } catch (XMLStreamException
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamWriterFilter.java32 import javax.xml.stream.XMLStreamException;
51 public void close() throws XMLStreamException {
55 public void flush() throws XMLStreamException {
59 public void writeEndDocument() throws XMLStreamException {
63 public void writeEndElement() throws XMLStreamException {
67 public void writeStartDocument() throws XMLStreamException {
71 public void writeCharacters(char[] text, int start, int len) throws XMLStreamException {
75 public void setDefaultNamespace(String uri) throws XMLStreamException {
79 public void writeCData(String data) throws XMLStreamException {
83 public void writeCharacters(String text) throws XMLStreamException {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DXMLStreamReaderEx.java29 import javax.xml.stream.XMLStreamException;
112 // * @throws XMLStreamException
121 //DataSource getTextAsDataHandler() throws XMLStreamException;
138 //byte[] getTextAsByteArray() throws XMLStreamException;
167 CharSequence getPCDATA() throws XMLStreamException;
184 String getElementTextTrim() throws XMLStreamException;
H A DXMLStreamWriterEx.java29 import javax.xml.stream.XMLStreamException;
94 void writeBinary(byte[] data, int start, int len, String contentType) throws XMLStreamException;
108 void writeBinary(DataHandler data) throws XMLStreamException;
129 OutputStream writeBinary(String contentType) throws XMLStreamException;
148 void writePCDATA(CharSequence data) throws XMLStreamException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DXmlOutput.java31 import javax.xml.stream.XMLStreamException;
117 public void startDocument(XMLSerializer serializer, boolean fragment, int[] nsUriIndex2prefixIndex, NamespaceContextImpl nsContext) throws IOException, SAXException, XMLStreamException;
125 public void endDocument(boolean fragment) throws IOException, SAXException, XMLStreamException;
137 public void beginStartTag(Name name) throws IOException, XMLStreamException;
139 public void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException;
141 public void attribute( Name name, String value ) throws IOException, XMLStreamException;
148 public void attribute( int prefix, String localName, String value ) throws IOException, XMLStreamException;
152 public void endTag(Name name) throws IOException, SAXException, XMLStreamException;
154 public void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException;
164 public void text( String value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException;
[all...]
H A DXmlOutputAbstractImpl.java31 import javax.xml.stream.XMLStreamException;
60 public void startDocument(XMLSerializer serializer, boolean fragment, int[] nsUriIndex2prefixIndex, NamespaceContextImpl nsContext) throws IOException, SAXException, XMLStreamException {
72 public void endDocument(boolean fragment) throws IOException, SAXException, XMLStreamException {
86 public void beginStartTag(Name name) throws IOException, XMLStreamException {
90 public abstract void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException;
92 public void attribute( Name name, String value ) throws IOException, XMLStreamException {
104 public abstract void attribute( int prefix, String localName, String value ) throws IOException, XMLStreamException;
108 public void endTag(Name name) throws IOException, SAXException, XMLStreamException {
111 public abstract void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException;
H A DForkXmlOutput.java30 import javax.xml.stream.XMLStreamException;
51 public void startDocument(XMLSerializer serializer, boolean fragment, int[] nsUriIndex2prefixIndex, NamespaceContextImpl nsContext) throws IOException, SAXException, XMLStreamException {
57 public void endDocument(boolean fragment) throws IOException, SAXException, XMLStreamException {
63 public void beginStartTag(Name name) throws IOException, XMLStreamException {
69 public void attribute(Name name, String value) throws IOException, XMLStreamException {
75 public void endTag(Name name) throws IOException, SAXException, XMLStreamException {
80 public void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException {
85 public void attribute(int prefix, String localName, String value) throws IOException, XMLStreamException {
95 public void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException {
100 public void text(String value, boolean needsSeparatingWhitespace) throws IOException, SAXException, XMLStreamException {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXFilteredEvent.java33 import javax.xml.stream.XMLStreamException;
45 public StAXFilteredEvent(XMLEventReader reader, EventFilter filter) throws XMLStreamException
62 } catch (XMLStreamException e) {
67 public XMLEvent nextEvent() throws XMLStreamException
74 public String getElementText() throws XMLStreamException
79 throw new XMLStreamException(
85 throw new XMLStreamException(
92 throw new XMLStreamException(CommonResourceBundle.getInstance().getString("message.END_ELEMENTnotFound"));
95 public XMLEvent nextTag() throws XMLStreamException {
101 throw new XMLStreamException(CommonResourceBundl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferCreator.java35 import javax.xml.stream.XMLStreamException;
73 public void close() throws XMLStreamException {
76 public void flush() throws XMLStreamException {
83 public void setNamespaceContext(NamespaceContext namespaceContext) throws XMLStreamException {
90 public void setDefaultNamespace(String namespaceURI) throws XMLStreamException {
94 public void setPrefix(String prefix, String namespaceURI) throws XMLStreamException {
98 public String getPrefix(String namespaceURI) throws XMLStreamException {
103 public void writeStartDocument() throws XMLStreamException {
107 public void writeStartDocument(String version) throws XMLStreamException {
111 public void writeStartDocument(String encoding, String version) throws XMLStreamException {
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLDOMWriterImpl.java32 import javax.xml.stream.XMLStreamException;
107 * @throws javax.xml.stream.XMLStreamException {@inheritDoc}
109 public void close() throws XMLStreamException {
115 * @throws javax.xml.stream.XMLStreamException {@inheritDoc}
117 public void flush() throws XMLStreamException {
132 * @throws javax.xml.stream.XMLStreamException {@inheritDoc}
135 public String getPrefix(String namespaceURI) throws XMLStreamException {
156 * @throws javax.xml.stream.XMLStreamException {@inheritDoc}
158 public void setDefaultNamespace(String uri) throws XMLStreamException {
168 * @throws javax.xml.stream.XMLStreamException {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/stax/
H A DFastInfosetStreamReader.java30 import javax.xml.stream.XMLStreamException;
45 public int peekNext() throws XMLStreamException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DSDDocumentFilter.java28 import javax.xml.stream.XMLStreamException;
54 XMLStreamWriter filter(SDDocument doc, XMLStreamWriter w) throws XMLStreamException, IOException;
H A DSDDocumentSource.java33 import javax.xml.stream.XMLStreamException;
61 * @throws XMLStreamException
66 public abstract XMLStreamReader read(XMLInputFactory xif) throws IOException, XMLStreamException;
77 * @throws XMLStreamException
82 public abstract XMLStreamReader read() throws IOException, XMLStreamException;
96 public XMLStreamReader read(XMLInputFactory xif) throws IOException, XMLStreamException {
102 public XMLStreamReader read() throws IOException, XMLStreamException {
119 public XMLStreamReader read(XMLInputFactory xif) throws XMLStreamException {
123 public XMLStreamReader read() throws XMLStreamException {

Completed in 228 milliseconds

123456789