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