Class CrossReference

java.lang.Object
generalDatabase.external.crossreference.CrossReference

public class CrossReference extends Object
  • Constructor Details

    • CrossReference

      public CrossReference(String tableName1, String columnName1, String oldColName1, String tableName2, String columnName2)
      Parameters:
      tableName1 - Name of table containing the unique referenced items
      columnName1 - Name of column containing the unique referenced items (always Id)
      oldColName1 - Name of the original cross reference data (always CopyId)
      tableName2 - Name of table referencing data in tableName1
      columnName2 - Name of column referencing data in columnName1
  • Method Details

    • getTableName1

      public String getTableName1()
      Returns:
      the tableName1
    • getColumnName1

      public String getColumnName1()
      Returns:
      the columnName1
    • getTableName2

      public String getTableName2()
      Returns:
      the tableName2
    • getColumnName2

      public String getColumnName2()
      Returns:
      the columnName2
    • getOldColName1

      public String getOldColName1()
      Returns:
      the oldColName1