public interface XmlOutputFactory
XMLOutputFactory
is an abstract class :(
We have implementations of XMLOutputFactory
that we want to make available to plugins
but OSGI ignores them because it only acknowledges beans with interfaces.
(Speak to Ryan Thomas for more details).
Modifier and Type | Method and Description |
---|---|
XMLEventWriter |
createXMLEventWriter(OutputStream stream) |
XMLEventWriter |
createXMLEventWriter(OutputStream stream,
String encoding) |
XMLEventWriter |
createXMLEventWriter(Result result) |
XMLEventWriter |
createXMLEventWriter(Writer stream) |
XMLStreamWriter |
createXMLStreamWriter(OutputStream stream) |
XMLStreamWriter |
createXMLStreamWriter(OutputStream stream,
String encoding) |
XMLStreamWriter |
createXMLStreamWriter(Result result) |
XMLStreamWriter |
createXMLStreamWriter(Writer stream) |
Object |
getProperty(String name) |
boolean |
isPropertySupported(String name) |
void |
setProperty(String name,
Object value) |
XMLStreamWriter createXMLStreamWriter(Writer stream) throws XMLStreamException
XMLStreamException
XMLStreamWriter createXMLStreamWriter(OutputStream stream) throws XMLStreamException
XMLStreamException
XMLStreamWriter createXMLStreamWriter(OutputStream stream, String encoding) throws XMLStreamException
XMLStreamException
XMLStreamWriter createXMLStreamWriter(Result result) throws XMLStreamException
XMLStreamException
XMLEventWriter createXMLEventWriter(Result result) throws XMLStreamException
XMLStreamException
XMLEventWriter createXMLEventWriter(OutputStream stream) throws XMLStreamException
XMLStreamException
XMLEventWriter createXMLEventWriter(OutputStream stream, String encoding) throws XMLStreamException
XMLStreamException
XMLEventWriter createXMLEventWriter(Writer stream) throws XMLStreamException
XMLStreamException
void setProperty(String name, Object value) throws IllegalArgumentException
IllegalArgumentException
Object getProperty(String name) throws IllegalArgumentException
IllegalArgumentException
boolean isPropertySupported(String name)
Copyright © 2003–2019 Atlassian. All rights reserved.