Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.table.io
Interface ExportManager

All Known Implementing Classes:
DelimitedExportManager, XMLExportManager

public interface ExportManager

An interface for writing a table model to an outputstream and/or a writer.


Method Summary
 void write(TableModel model, OutputStream out)
          Writes model to the outputstream out.
 void write(TableModel model, Writer writer)
          Writes model to the writer writer.
 

Method Detail

write

void write(TableModel model,
           OutputStream out)
Writes model to the outputstream out.

Parameters:
model - the table model to write
out - the output stream to write to

write

void write(TableModel model,
           Writer writer)
Writes model to the writer writer.

Parameters:
model - the table model to write
writer - the writer to write to
Since:
3.4

Copyright © 2011 Citra Technologies. All Rights Reserved.