1 23 24 30 31 package com.sun.jdo.spi.persistence.support.sqlstore.model; 32 33 34 35 40 public class ReferenceKeyDesc extends Object { 41 private KeyDesc referencingKey; 42 43 private KeyDesc referencedKey; 44 45 private TableDesc table; 46 47 public ReferenceKeyDesc(TableDesc table, 48 KeyDesc referencingKey, 49 KeyDesc referencedKey) { 50 this.referencingKey = referencingKey; 51 this.referencedKey = referencedKey; 52 this.table = table; 53 } 54 55 public KeyDesc getReferencingKey() { 56 return referencingKey; 57 } 58 59 public KeyDesc getReferencedKey() { 60 return referencedKey; 61 } 62 63 public TableDesc getTableDesc() { 64 return table; 65 } 66 } 67 | Popular Tags |