Package org.apache.cxf.staxutils
Class DelegatingXMLStreamWriter
- java.lang.Object
- 
- org.apache.cxf.staxutils.DelegatingXMLStreamWriter
 
- 
- All Implemented Interfaces:
- XMLStreamWriter
 - Direct Known Subclasses:
- IgnoreNamespacesWriter,- OutTransformWriter,- XSLTOutInterceptor.XSLTStreamWriter
 
 public class DelegatingXMLStreamWriter extends Object implements XMLStreamWriter 
- 
- 
Field SummaryFields Modifier and Type Field Description protected XMLStreamWriterdelegate
 - 
Constructor SummaryConstructors Constructor Description DelegatingXMLStreamWriter(XMLStreamWriter del)
 - 
Method Summary
 
- 
- 
- 
Field Detail- 
delegateprotected final XMLStreamWriter delegate 
 
- 
 - 
Constructor Detail- 
DelegatingXMLStreamWriterpublic DelegatingXMLStreamWriter(XMLStreamWriter del) 
 
- 
 - 
Method Detail- 
closepublic void close() throws XMLStreamException- Specified by:
- closein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
flushpublic void flush() throws XMLStreamException- Specified by:
- flushin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
getNamespaceContextpublic NamespaceContext getNamespaceContext() - Specified by:
- getNamespaceContextin interface- XMLStreamWriter
 
 - 
getPrefixpublic String getPrefix(String uri) throws XMLStreamException - Specified by:
- getPrefixin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
getPropertypublic Object getProperty(String name) - Specified by:
- getPropertyin interface- XMLStreamWriter
 
 - 
setDefaultNamespacepublic void setDefaultNamespace(String uri) throws XMLStreamException - Specified by:
- setDefaultNamespacein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
setNamespaceContextpublic void setNamespaceContext(NamespaceContext ctx) throws XMLStreamException - Specified by:
- setNamespaceContextin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
setPrefixpublic void setPrefix(String pfx, String uri) throws XMLStreamException - Specified by:
- setPrefixin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeAttributepublic void writeAttribute(String prefix, String uri, String local, String value) throws XMLStreamException - Specified by:
- writeAttributein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeAttributepublic void writeAttribute(String uri, String local, String value) throws XMLStreamException - Specified by:
- writeAttributein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeAttributepublic void writeAttribute(String local, String value) throws XMLStreamException - Specified by:
- writeAttributein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeCDatapublic void writeCData(String cdata) throws XMLStreamException - Specified by:
- writeCDatain interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeCharacterspublic void writeCharacters(char[] arg0, int arg1, int arg2) throws XMLStreamException- Specified by:
- writeCharactersin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeCharacterspublic void writeCharacters(String text) throws XMLStreamException - Specified by:
- writeCharactersin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeCommentpublic void writeComment(String text) throws XMLStreamException - Specified by:
- writeCommentin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeDefaultNamespacepublic void writeDefaultNamespace(String uri) throws XMLStreamException - Specified by:
- writeDefaultNamespacein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeDTDpublic void writeDTD(String dtd) throws XMLStreamException - Specified by:
- writeDTDin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeEmptyElementpublic void writeEmptyElement(String prefix, String local, String uri) throws XMLStreamException - Specified by:
- writeEmptyElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeEmptyElementpublic void writeEmptyElement(String uri, String local) throws XMLStreamException - Specified by:
- writeEmptyElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeEmptyElementpublic void writeEmptyElement(String localName) throws XMLStreamException - Specified by:
- writeEmptyElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeEndDocumentpublic void writeEndDocument() throws XMLStreamException- Specified by:
- writeEndDocumentin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeEndElementpublic void writeEndElement() throws XMLStreamException- Specified by:
- writeEndElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeEntityRefpublic void writeEntityRef(String ent) throws XMLStreamException - Specified by:
- writeEntityRefin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeNamespacepublic void writeNamespace(String prefix, String uri) throws XMLStreamException - Specified by:
- writeNamespacein interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeProcessingInstructionpublic void writeProcessingInstruction(String target, String data) throws XMLStreamException - Specified by:
- writeProcessingInstructionin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeProcessingInstructionpublic void writeProcessingInstruction(String target) throws XMLStreamException - Specified by:
- writeProcessingInstructionin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeStartDocumentpublic void writeStartDocument() throws XMLStreamException- Specified by:
- writeStartDocumentin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeStartDocumentpublic void writeStartDocument(String encoding, String ver) throws XMLStreamException - Specified by:
- writeStartDocumentin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeStartDocumentpublic void writeStartDocument(String ver) throws XMLStreamException - Specified by:
- writeStartDocumentin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeStartElementpublic void writeStartElement(String prefix, String local, String uri) throws XMLStreamException - Specified by:
- writeStartElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeStartElementpublic void writeStartElement(String uri, String local) throws XMLStreamException - Specified by:
- writeStartElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 - 
writeStartElementpublic void writeStartElement(String local) throws XMLStreamException - Specified by:
- writeStartElementin interface- XMLStreamWriter
- Throws:
- XMLStreamException
 
 
- 
 
-