01: /*
02: * CriteriaPanel.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.interfaces;
13:
14: import workbench.gui.actions.WbAction;
15:
16: /**
17: * @author support@sql-workbench.net
18: */
19: public interface CriteriaPanel {
20: void setFocusToEntryField();
21:
22: String getText();
23:
24: void setText(String aText);
25:
26: void addToToolbar(WbAction action, boolean atFront, boolean withSep);
27:
28: void saveSettings();
29:
30: void restoreSettings();
31:
32: void saveSettings(PropertyStorage props, String key);
33:
34: void restoreSettings(PropertyStorage props, String key);
35:
36: void setColumnList(String[] names);
37: }
|