Interface IExtensibleWriter

All Superinterfaces:
IXMLWriter
All Known Implementing Classes:
GenericXMLWriter, ISO88591StreamWriter, StAXWriter, StreamWriterBase, UTF8StreamWriter, XMLWriterBase

public interface IExtensibleWriter extends IXMLWriter
Extensible version of standard XML writer interface. This allows the creation of child writer instances with added namespaces.
Author:
Dennis M. Sosnoski
  • Method Details

    • createChildWriter

      IXMLWriter createChildWriter(String[] uris) throws IOException
      Create a child writer instance to be used for a separate binding. The child writer inherits the output handling from this writer, while using the supplied namespace URIs.
      Parameters:
      uris - ordered array of URIs for namespaces used in document
      Returns:
      child writer
      Throws:
      IOException