its.SQL
Class ForeignData

java.lang.Object
  extended byits.SQL.ForeignData

public class ForeignData
extends java.lang.Object

Used by the SDD Schema parser to maintain foreign reference data. Each instance of this class represents a single FOREIGN KEY constraint statement, and each Table object has a list of them.


Field Summary
 java.util.Vector foreignCols
          a list of String objects containing column names.
 java.lang.String foreignTable
           
 int line
           
 java.util.Vector localCols
          a list of String objects containing column names
 
Constructor Summary
ForeignData()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

localCols

public java.util.Vector localCols
a list of String objects containing column names


foreignCols

public java.util.Vector foreignCols
a list of String objects containing column names. can be empty if referencing the primary key of the foreign table.


foreignTable

public java.lang.String foreignTable

line

public int line
Constructor Detail

ForeignData

public ForeignData()