01: /*
02: * TextOptions.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.gui.dialogs.export;
13:
14: import workbench.util.CharacterRange;
15:
16: /**
17: *
18: * @author support@sql-workbench.net
19: */
20: public interface TextOptions {
21: String getTextDelimiter();
22:
23: void setTextDelimiter(String delim);
24:
25: boolean getExportHeaders();
26:
27: void setExportHeaders(boolean flag);
28:
29: String getTextQuoteChar();
30:
31: void setTextQuoteChar(String quote);
32:
33: void setQuoteAlways(boolean flag);
34:
35: boolean getQuoteAlways();
36:
37: void setEscapeRange(CharacterRange range);
38:
39: CharacterRange getEscapeRange();
40:
41: void setLineEnding(String ending);
42:
43: String getLineEnding();
44:
45: void setDecimalSymbol(String decimal);
46:
47: String getDecimalSymbol();
48: }
|