KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > logicalcobwebs > proxool > HsqlConnectionIF


1 /*
2  * This software is released under a licence similar to the Apache Software Licence.
3  * See org.logicalcobwebs.proxool.package.html for details.
4  * The latest version is available at http://proxool.sourceforge.net
5  */

6 package org.logicalcobwebs.proxool;
7
8 import java.sql.SQLException JavaDoc;
9 import java.sql.Connection JavaDoc;
10
11 /**
12  * Supports {@link InjectableInterfaceTest}
13  * @author <a HREF="mailto:bill@logicalcobwebs.co.uk">Bill Horsman</a>
14  * @author $Author: billhorsman $ (current maintainer)
15  * @version $Revision: 1.2 $, $Date: 2004/06/17 21:33:54 $
16  * @since 0.9.0
17  */

18 public interface HsqlConnectionIF extends Connection JavaDoc {
19
20 }
21
22 /*
23  Revision history:
24  $Log: HsqlConnectionIF.java,v $
25  Revision 1.2 2004/06/17 21:33:54 billhorsman
26  Mistake. Can't put private classes in the interface. Doh.
27
28  Revision 1.1 2004/06/02 20:59:52 billhorsman
29  New injectable interface tests
30
31 */
Popular Tags