Searched refs:createXMLStreamWriter (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXOutputFactory.java56 return new StAXEventWriter(createXMLStreamWriter(result));
60 return new StAXEventWriter(createXMLStreamWriter(writer));
64 return new StAXEventWriter(createXMLStreamWriter(outputStream));
68 return new StAXEventWriter(createXMLStreamWriter(outputStream, encoding));
71 public XMLStreamWriter createXMLStreamWriter(Result result) throws XMLStreamException { method in class:StAXOutputFactory
75 return createXMLStreamWriter(streamResult.getWriter());
77 return createXMLStreamWriter(streamResult.getOutputStream());
81 return createXMLStreamWriter(writer);
91 return createXMLStreamWriter(writer);
102 public XMLStreamWriter createXMLStreamWriter(Write method in class:StAXOutputFactory
106 public XMLStreamWriter createXMLStreamWriter(OutputStream outputStream) throws XMLStreamException { method in class:StAXOutputFactory
110 public XMLStreamWriter createXMLStreamWriter(OutputStream outputStream, String encoding) throws XMLStreamException { method in class:StAXOutputFactory
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLOutputFactoryImpl.java75 return new XMLEventWriterImpl(createXMLStreamWriter(outputStream, encoding));
83 return new XMLEventWriterImpl(createXMLStreamWriter(result));
87 return new XMLEventWriterImpl(createXMLStreamWriter(writer));
90 public javax.xml.stream.XMLStreamWriter createXMLStreamWriter(javax.xml.transform.Result result) throws javax.xml.stream.XMLStreamException { method in class:XMLOutputFactoryImpl
93 return createXMLStreamWriter((StreamResult) result, null);
105 return createXMLStreamWriter(new StreamResult(result.getSystemId()));
114 public javax.xml.stream.XMLStreamWriter createXMLStreamWriter(java.io.Writer writer) throws javax.xml.stream.XMLStreamException { method in class:XMLOutputFactoryImpl
115 return createXMLStreamWriter(toStreamResult(null, writer, null) , null);
118 public javax.xml.stream.XMLStreamWriter createXMLStreamWriter(java.io.OutputStream outputStream) throws javax.xml.stream.XMLStreamException { method in class:XMLOutputFactoryImpl
119 return createXMLStreamWriter(outputStrea
122 public javax.xml.stream.XMLStreamWriter createXMLStreamWriter(java.io.OutputStream outputStream, String encoding) throws javax.xml.stream.XMLStreamException { method in class:XMLOutputFactoryImpl
177 javax.xml.stream.XMLStreamWriter createXMLStreamWriter(javax.xml.transform.stream.StreamResult sr, String encoding) throws javax.xml.stream.XMLStreamException { method in class:XMLOutputFactoryImpl
[all...]
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLOutputFactory.java225 public abstract XMLStreamWriter createXMLStreamWriter(java.io.Writer stream) throws XMLStreamException; method in class:XMLOutputFactory
232 public abstract XMLStreamWriter createXMLStreamWriter(java.io.OutputStream stream) throws XMLStreamException; method in class:XMLOutputFactory
240 public abstract XMLStreamWriter createXMLStreamWriter(java.io.OutputStream stream, method in class:XMLOutputFactory
250 public abstract XMLStreamWriter createXMLStreamWriter(Result result) throws XMLStreamException; method in class:XMLOutputFactory
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamWriterFactory.java185 public static XMLStreamWriter createXMLStreamWriter(OutputStream out) { method in class:XMLStreamWriterFactory
193 public static XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding) { method in class:XMLStreamWriterFactory
201 public static XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding, boolean declare) { method in class:XMLStreamWriterFactory
226 return xof.createXMLStreamWriter(out,encoding);
252 Class<?> clazz = xof.createXMLStreamWriter(new StringWriter()).getClass();
304 return xof.createXMLStreamWriter(out,encoding);
342 return xof.createXMLStreamWriter(out,encoding);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DDumpTube.java103 XMLStreamWriter writer = staxOut.createXMLStreamWriter(new PrintStream(out) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DWSDLFetcher.java114 XMLStreamWriter xsw = writerfactory.createXMLStreamWriter(os);
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java325 XMLStreamWriter xout = output.createXMLStreamWriter(out);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDXMLPrinter.java561 XMLStreamWriter output = factory.createXMLStreamWriter(out);

Completed in 47 milliseconds