01: /*
02: * TableSearchDisplay.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.db.TableIdentifier;
15: import workbench.storage.DataStore;
16:
17: /**
18: *
19: * @author kellererth
20: */
21: public interface TableSearchDisplay {
22: void setCurrentTable(String aTablename, String aStatement);
23:
24: void error(String msg);
25:
26: //void addResultRow(TableIdentifier table, ResultSet aResult);
27: void tableSearched(TableIdentifier table, DataStore result);
28:
29: void setStatusText(String aStatustext);
30:
31: void searchStarted();
32:
33: void searchEnded();
34: }
|