01: /*
02: * DbObjectList.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.dbobjects;
13:
14: import java.awt.Component;
15: import java.util.List;
16: import workbench.db.DbObject;
17: import workbench.db.TableIdentifier;
18: import workbench.db.WbConnection;
19:
20: /**
21: * @author support@sql-workbench.net
22: */
23:
24: public interface DbObjectList {
25: TableIdentifier getObjectTable();
26:
27: List<? extends DbObject> getSelectedObjects();
28:
29: WbConnection getConnection();
30:
31: Component getComponent();
32: }
|