KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > utils > _Reference


1 package com.daffodilwoods.daffodildb.server.sql99.utils;
2
3
4 /**
5  * <p>Title: </p>
6  * <p>Description: </p>
7  * <p>Copyright: Copyright (c) 2002</p>
8  * <p>Company: </p>
9  * @author unascribed
10  * @version 1.0
11  */

12 import com.daffodilwoods.database.resource.DException;
13
14 public interface _Reference {
15    String JavaDoc getColumn() throws DException;
16
17    int getIndex() throws DException;
18
19    void setIndex(int index) throws DException;
20
21    int getReferenceType() throws DException;
22
23    String JavaDoc getQualifiedColumnName() throws DException;
24
25    String JavaDoc getTriggerTableAlias() throws DException;
26
27    int getDatatype() throws DException;
28
29    void setSize(int size0) throws DException;
30
31    int getSize() throws DException;
32
33    void setDatatype(int type) throws DException;
34
35    void setReason(String JavaDoc reason) throws DException;
36
37    String JavaDoc getReason()throws DException;
38
39    boolean isCloned();
40
41
42 }
43
Popular Tags