1 7 package com.bull.eclipse.jonas.actions.hibernate; 8 9 import java.util.Collection ; 10 11 17 public class ValueObjectDescription { 18 private String packageName; 19 private String valueName; 20 private String valueTOName; 21 private String objectName; 22 private String pkJavaType; 23 private Collection relationMany; 24 private Collection relationOne; 25 private String suffix; 26 27 public String getSuffix() { 28 return suffix; 29 } 30 public void setSuffix(String suffix) { 31 this.suffix = suffix; 32 } 33 public String getPackageName() { 34 return packageName; 35 } 36 public void setPackageName(String packageName) { 37 this.packageName = packageName; 38 } 39 public String getValueName() { 40 return valueName; 41 } 42 public void setValueName(String valueName) { 43 this.valueName = valueName; 44 } 45 46 public String getValueTOName() { 47 return valueTOName; 48 } 49 public void setValueTOName(String valueTOName) { 50 this.valueTOName = valueTOName; 51 } 52 public String getObjectName() { 53 return objectName; 54 } 55 public void setObjectName(String objectName) { 56 this.objectName = objectName; 57 } 58 public String getPkJavaType() { 59 return pkJavaType; 60 } 61 public void setPkJavaType(String pkJavaType) { 62 this.pkJavaType = pkJavaType; 63 } 64 public Collection getRelationMany() { 65 return relationMany; 66 } 67 public void setRelationMany(Collection relationMany) { 68 this.relationMany = relationMany; 69 } 70 public Collection getRelationOne() { 71 return relationOne; 72 } 73 public void setRelationOne(Collection relationOne) { 74 this.relationOne = relationOne; 75 } 76 } 77 | Popular Tags |