01: package org.jsqltool.gui.tableplugins.indexes;
02:
03: import javax.swing.table.*;
04:
05: /**
06: * <p>Title: JSqlTool Project</p>
07: * <p>Description: This interface defines indexes panel operations.
08: * </p>
09: * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p>
10: *
11: * <p> This file is part of JSqlTool project.
12: * This library is free software; you can redistribute it and/or
13: * modify it under the terms of the (LGPL) Lesser General Public
14: * License as published by the Free Software Foundation;
15: *
16: * GNU LESSER GENERAL PUBLIC LICENSE
17: * Version 2.1, February 1999
18: *
19: * This library is distributed in the hope that it will be useful,
20: * but WITHOUT ANY WARRANTY; without even the implied warranty of
21: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22: * Library General Public License for more details.
23: *
24: * You should have received a copy of the GNU Library General Public
25: * License along with this library; if not, write to the Free
26: * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27: *
28: * The author may be contacted at:
29: * maurocarniel@tin.it</p>
30: *
31: * @author Mauro Carniel
32: * @version 1.0
33: */
34: public interface Indexes {
35:
36: public String getQueryIndexes(String tableName);
37:
38: }
|