Uses of Class
unity.annotation.SourceKey

Packages that use SourceKey
unity.annotation   
 

Uses of SourceKey in unity.annotation
 

Subclasses of SourceKey in unity.annotation
 class AnnotatedSourceForeignKey
           
 class AnnotatedSourceKey
           
 class SourceForeignKey
           
 

Methods in unity.annotation that return SourceKey
 SourceKey SourceJoin.getFromKey()
           
 SourceKey SourceTable.getPrimaryKey()
           
 SourceKey SourceJoin.getToKey()
           
 SourceKey SourceForeignKey.getToKey()
           
 

Methods in unity.annotation with parameters of type SourceKey
 void SourceJoin.setFromKey(SourceKey from)
           
 void SourceTable.setPrimaryKey(SourceKey key)
           
 void SourceJoin.setToKey(SourceKey to)
           
 void SourceForeignKey.setToKey(SourceKey key)
           
 

Constructors in unity.annotation with parameters of type SourceKey
AnnotatedSourceJoin(SourceKey from, SourceKey to, java.lang.String join, int type)
           
AnnotatedSourceTable(java.lang.String catName, java.lang.String schName, java.lang.String tblName, java.lang.String com, java.util.HashMap fields, SourceKey pkey)
           
SourceJoin(SourceKey from, SourceKey to, java.lang.String join)
           
SourceTable(java.lang.String catName, java.lang.String schName, java.lang.String tblName, java.lang.String com, java.util.HashMap fields, SourceKey pkey)