KickJava   Java API By Example, From Geeks To Geeks.

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


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.PreparedStatement JavaDoc;
9
10 /**
11  * Supports {@link InjectableInterfaceTest}
12  * @author <a HREF="mailto:bill@logicalcobwebs.co.uk">Bill Horsman</a>
13  * @author $Author: billhorsman $ (current maintainer)
14  * @version $Revision: 1.2 $, $Date: 2004/06/17 21:33:54 $
15  * @since 0.9.0
16  */

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