public interface TextExportWriter
| Modifier and Type | Method and Description |
|---|---|
void |
addEmptyField()
Adds an empty field, e.g.
|
void |
addField(java.lang.String s)
Adds a string to a field, e.g.
|
void |
addLineBreakInField()
Not all writers will support this method...
|
void |
endField()
Ends the field.
|
void |
endRecord()
Ends the current record.
|
void |
newField()
Starts a new field
|
void |
newRecord()
Starts a new record.
|
void |
writeText(java.lang.String text)
Adds text to the current field.
|
void addEmptyField()
newField(); endField();
void addField(java.lang.String s)
newField(); writeText(s); endField();
s - The string to addvoid addLineBreakInField()
void endField()
void endRecord()
void newField()
void newRecord()
void writeText(java.lang.String text)
text - Copyright ? Technia AB. All Rights Reserved.