KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dinamica > IRecordsetProvider


1 package dinamica;
2
3 /**
4  * Defines the interface to return a Recordset
5  * given a Recordset representing the input parameters
6  * <br><br>
7  * Creation date: 27/04/2005
8  * (c) 2005 Martin Cordova<br>
9  * This code is released under the LGPL license<br>
10  * Dinamica Framework - http://www.martincordova.com<br>
11  * @author Martin Cordova (dinamica@martincordova.com)
12  */

13 public interface IRecordsetProvider
14 {
15
16     public Recordset getRecordset(Recordset inputParams) throws Throwable JavaDoc;
17     
18 }
19
Popular Tags