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.PreparedStatement ;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.016 */17 public interface HsqlPreparedStatementIF extends PreparedStatement {18 19 }20 21 /*22 Revision history:23 $Log: HsqlPreparedStatementIF.java,v $24 Revision 1.2 2004/06/17 21:33:54 billhorsman25 Mistake. Can't put private classes in the interface. Doh.26 27 Revision 1.1 2004/06/02 20:59:52 billhorsman28 New injectable interface tests29 30 */