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.net5 */6 package org.logicalcobwebs.proxool;7 8 import java.sql.SQLException ;9 import java.sql.Statement ;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.017 */18 public interface HsqlStatementIF extends Statement {19 20 }21 22 /*23 Revision history:24 $Log: HsqlStatementIF.java,v $25 Revision 1.2 2004/06/17 21:33:54 billhorsman26 Mistake. Can't put private classes in the interface. Doh.27 28 Revision 1.1 2004/06/02 20:59:52 billhorsman29 New injectable interface tests30 31 */