~ubuntu-branches/ubuntu/raring/weka/raring

« back to all changes in this revision

Viewing changes to weka/gui/sql/event/QueryExecuteListener.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner, Soeren Sonnenburg, Torsten Werner
  • Date: 2008-08-10 21:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080810212705-tr8etpnkdx2ziktp
Tags: 3.5.8-1
[ Soeren Sonnenburg ]
* Bump Standards Version to 3.8.0.
* Remove references to non-free Java in debian/copyright.

[ Torsten Werner ]
* new upstream release
* Switch to openjdk-6.
* Move package to main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *    This program is free software; you can redistribute it and/or modify
3
 
 *    it under the terms of the GNU General Public License as published by
4
 
 *    the Free Software Foundation; either version 2 of the License, or
5
 
 *    (at your option) any later version.
6
 
 *
7
 
 *    This program is distributed in the hope that it will be useful,
8
 
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
 *    GNU General Public License for more details.
11
 
 *
12
 
 *    You should have received a copy of the GNU General Public License
13
 
 *    along with this program; if not, write to the Free Software
14
 
 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
15
 
 */
16
 
 
17
 
/*
18
 
 * QueryExecuteListener.java
19
 
 * Copyright (C) 2005 University of Waikato, Hamilton, New Zealand
20
 
 *
21
 
 */
22
 
 
23
 
 
24
 
package weka.gui.sql.event;
25
 
 
26
 
import java.util.EventListener;
27
 
import java.util.EventObject;
28
 
 
29
 
/**
30
 
 * A listener for executing queries.
31
 
 *
32
 
 * @author      FracPete (fracpete at waikato dot ac dot nz)
33
 
 * @version     $Revision: 1.1 $
34
 
 */
35
 
 
36
 
public interface QueryExecuteListener extends EventListener {
37
 
  /**
38
 
   * This method gets called when a query has been executed.
39
 
   */
40
 
  public void queryExecuted(QueryExecuteEvent evt);
41
 
}
 
1
/*
 
2
 *    This program is free software; you can redistribute it and/or modify
 
3
 *    it under the terms of the GNU General Public License as published by
 
4
 *    the Free Software Foundation; either version 2 of the License, or
 
5
 *    (at your option) any later version.
 
6
 *
 
7
 *    This program is distributed in the hope that it will be useful,
 
8
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 *    GNU General Public License for more details.
 
11
 *
 
12
 *    You should have received a copy of the GNU General Public License
 
13
 *    along with this program; if not, write to the Free Software
 
14
 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
15
 */
 
16
 
 
17
/*
 
18
 * QueryExecuteListener.java
 
19
 * Copyright (C) 2005 University of Waikato, Hamilton, New Zealand
 
20
 *
 
21
 */
 
22
 
 
23
package weka.gui.sql.event;
 
24
 
 
25
import java.util.EventListener;
 
26
 
 
27
/**
 
28
 * A listener for executing queries.
 
29
 *
 
30
 * @author      FracPete (fracpete at waikato dot ac dot nz)
 
31
 * @version     $Revision: 1.2 $
 
32
 */
 
33
 
 
34
public interface QueryExecuteListener extends EventListener {
 
35
  /**
 
36
   * This method gets called when a query has been executed.
 
37
   * 
 
38
   * @param evt         the event
 
39
   */
 
40
  public void queryExecuted(QueryExecuteEvent evt);
 
41
}