01: /*
02: * TextImportOptions.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.dataimport;
13:
14: /**
15: *
16: * @author support@sql-workbench.net
17: */
18: public interface TextImportOptions {
19: String getTextDelimiter();
20:
21: void setTextDelimiter(String delim);
22:
23: boolean getContainsHeader();
24:
25: void setContainsHeader(boolean flag);
26:
27: String getTextQuoteChar();
28:
29: void setTextQuoteChar(String quote);
30:
31: boolean getDecode();
32:
33: void setDecode(boolean flag);
34:
35: String getDecimalChar();
36:
37: void setDecimalChar(String s);
38: }
|