KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jimm > datavision > source > ncsql > NCTable


1 package jimm.datavision.source.ncsql;
2 import jimm.datavision.source.*;
3
4 /**
5  * A table for no-connection database sources.
6  *
7  * @author Jim Menard, <a HREF="mailto:jimm@io.com">jimm@io.com</a>
8  * @see NCDatabase
9  */

10 public class NCTable extends Table {
11
12 /**
13  * Constructor.
14  *
15  * @param dataSource the data source in which this table resides
16  * @param name the table's name
17  */

18 public NCTable(DataSource dataSource, String JavaDoc name) {
19     super(dataSource, name);
20 }
21
22 }
23
Popular Tags