KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > rolap > sql > SqlQueryChecker


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/rolap/sql/SqlQueryChecker.java#2 $
3 // This software is subject to the terms of the Common Public License
4 // Agreement, available at the following URL:
5 // http://www.opensource.org/licenses/cpl.html.
6 // Copyright (C) 2002-2002 Kana Software, Inc.
7 // Copyright (C) 2002-2005 Julian Hyde and others
8 // All Rights Reserved.
9 // You must accept the terms of that agreement to use this software.
10 //
11 // jhyde, Mar 21, 2002
12 */

13 package mondrian.rolap.sql;
14
15 /**
16  * Runs a SQL query.
17  *
18  * <p>Useful for testing purposes.
19  *
20  * @author jhyde
21  * @since 30 August, 2001
22  * @version $Id: //open/mondrian/src/main/mondrian/rolap/sql/SqlQueryChecker.java#2 $
23  */

24 public interface SqlQueryChecker {
25     void onGenerate(SqlQuery q);
26 }
27
28 // End SqlQueryChecker.java
29
Popular Tags