Interface StaxWriterCallback


  • public interface StaxWriterCallback
    Callback interface for writing to an XML file - useful e.g. for handling headers and footers.
    Author:
    Robert Kasanicky
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      voidwrite​(javax.xml.stream.XMLEventWriter writer)
      Write contents using the supplied XMLEventWriter.
    • Method Detail

      • write

        void write​(javax.xml.stream.XMLEventWriter writer)
            throws java.io.IOException
        Write contents using the supplied XMLEventWriter. It is not required to flush the writer inside this method.
        Parameters:
        writer - the XMLEventWriter to be used to write the contents.
        Throws:
        java.io.IOException - thrown if an error occurs during writing.