KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > dql > tableexpression > fromclause > tableorqueryname


1 package com.daffodilwoods.daffodildb.server.sql99.dql.tableexpression.fromclause;
2
3 import com.daffodilwoods.daffodildb.server.sql99.common.*;
4 import com.daffodilwoods.daffodildb.server.sql99.utils.*;
5 import com.daffodilwoods.database.resource.*;
6 import java.util.*;
7
8 /**
9  * It represents the qualified name of table.
10  * <p>Title: </p>
11  * <p>Description: </p>
12  * <p>Copyright: Copyright (c) 2003</p>
13  * <p>Company: </p>
14  * @author unascribed
15  * @version 1.0
16  */

17
18 public interface tableorqueryname extends com.daffodilwoods.daffodildb.utils.parser.StatementExecuter {
19
20    /**
21     * Returns the table details.
22     * @return
23     * @throws DException
24     */

25
26     public TableDetails getTableDetails() throws DException ;
27
28     /**
29      * For documentation of these methods please refer the documentation of
30      * queryexpressionbody.
31      */

32
33     public void getColumnsIncluded(ArrayList aList) throws DException ;
34     public void getTablesIncluded(ArrayList aList) throws DException ;
35 }
36
Popular Tags