KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datadictionarysystem > information > _TableInformation


1 package com.daffodilwoods.daffodildb.server.datadictionarysystem.information;
2
3 import java.util.*;
4
5 public interface _TableInformation {
6
7    String JavaDoc getName();
8
9    String JavaDoc getCatalog();
10
11    String JavaDoc getSchema();
12
13    String JavaDoc getQualifiedName();
14
15    ArrayList getAllColumns();
16
17    ArrayList getAllIndexes();
18
19    ArrayList getAllFullTextIndexes();
20
21    ArrayList getAllTriggers();
22
23    ArrayList getAllConstraints();
24
25    _ColumnsInformation getColumnInformation();
26
27    _IndexInformation getIndexInformation();
28
29    _FullTextIndexInformation getFullTextIndexInformation();
30
31    _TriggerInformation getTriggerInformation();
32
33    _ConstraintInformation getConstraintInformation();
34
35    String JavaDoc getType();
36
37    String JavaDoc getRemarks();
38 }
39
Popular Tags