01: /*
02: * ImportOptions.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 ImportOptions {
19: void setDateFormat(String format);
20:
21: String getDateFormat();
22:
23: void setTimestampFormat(String format);
24:
25: String getTimestampFormat();
26:
27: void setEncoding(String enc);
28:
29: String getEncoding();
30:
31: void setMode(String mode);
32:
33: String getMode();
34: }
|