Interface WriterSource

All Superinterfaces:
FilterSource, RegistryContext
All Known Implementing Classes:
CSVWriter, HTMLWriter, LazyFilter, NullSource, ObjectSourceImpl, PlainTextWriter, POVExport, StreamAdapter

public interface WriterSource extends FilterSource
This subinterface of FilterSource has to be implemented by filter sources whose flavor supports Writers (IOFlavor.WRITER). It represents the data by writing it to a Writer.
Author:
Ole Kniemeyer
  • Method Details

    • write

      void write(Writer out) throws IOException
      This method writes the data to out.
      Parameters:
      out - the writer to which data is written
      Throws:
      IOException