Interface FlatFileHeaderCallback
public interface FlatFileHeaderCallback
Callback interface for writing a header to a file.
- Author:
 - Robert Kasanicky, Mahmoud Ben Hassine
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidwriteHeader(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- theWriterto be used to write the header.- Throws:
 IOException- if error occurs during writing.
 
 -