01: /*
02: * CompletionHandler.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.completion;
13:
14: import workbench.db.WbConnection;
15: import workbench.gui.editor.JEditTextArea;
16: import workbench.interfaces.StatusBar;
17:
18: /**
19: * @author support@sql-workbench.net
20: */
21: public interface CompletionHandler {
22: void setStatusBar(StatusBar bar);
23:
24: void setEditor(JEditTextArea ed);
25:
26: void setConnection(WbConnection conn);
27:
28: void showCompletionPopup();
29:
30: void cancelPopup();
31: }
|