Interface FlatFileHeaderCallback
public interface FlatFileHeaderCallback
Callback interface for writing a header to a file.
- Author:
- Robert Kasanicky, Mahmoud Ben Hassine
-
Method Summary
Modifier and TypeMethodDescriptionvoid
writeHeader
(Writer writer) Write contents to a file using the suppliedWriter
.
-
Method Details
-
writeHeader
Write contents to a file using the suppliedWriter
. It is not required to flush the writer inside this method.- Parameters:
writer
- theWriter
to be used to write the header.- Throws:
IOException
- if error occurs during writing.
-