KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datasystem > interfaces > _Table


1 package com.daffodilwoods.daffodildb.server.datasystem.interfaces;
2
3 import com.daffodilwoods.database.resource.*;
4 import com.daffodilwoods.daffodildb.server.datasystem.utility.*;
5
6
7 /**
8  *
9  * <p>Title: _Table</p>
10 * <p>Description: Is an interface that provides methods common to all the tables.
11  */

12 public interface _Table {
13   _Record getBlankRecord() throws DException;
14
15   /**
16    * Used to retreive the tableCharacteristics from the table.
17    * @return table characteristics of the table
18    * @throws DException
19    */

20   _TableCharacteristics getTableCharacteristics()throws DException;
21 }
22
Popular Tags