1 2 package org.objectweb.jonas.jtests.beans.relation.tier; 3 4 7 8 public class TiemorValue extends java.lang.Object implements java.io.Serializable { 9 10 private java.lang.Integer numinttie; 13 14 private boolean numinttieHasBeenSet = false; 15 16 private java.lang.String raisoctie; 18 19 private boolean raisoctieHasBeenSet = false; 20 21 private java.lang.Integer __pk; 23 24 public TiemorValue() { 26 } 27 28 public TiemorValue(TiemorValue otherValue) { 31 this.numinttie = otherValue.numinttie; 32 numinttieHasBeenSet = true; 33 34 this.raisoctie = otherValue.raisoctie; 35 raisoctieHasBeenSet = true; 36 37 } 40 41 44 45 public java.lang.String getRaisoctie() { 47 return this.raisoctie; 48 } 49 50 public void setRaisoctie(java.lang.String raisoctie) { 51 this.raisoctie = raisoctie; 52 this.raisoctieHasBeenSet = true; 53 } 54 55 public boolean raisoctieHasBeenSet() { 56 return raisoctieHasBeenSet; 57 } 58 59 62 public java.lang.Integer getPrimaryKey() { 63 return __pk; 64 } 65 66 public java.lang.Integer getNuminttie() { 67 return this.numinttie; 68 } 69 70 public void setNuminttie(java.lang.Integer numinttie) { 71 this.numinttie = numinttie; 72 __pk = numinttie; 73 numinttieHasBeenSet = true; 74 75 } 76 77 public void setPrimaryKey(java.lang.Integer numinttie) { 78 setNuminttie(numinttie); 79 } 80 81 protected boolean numinttieHasBeenSet() { 82 return numinttieHasBeenSet; 83 } 84 85 88 public java.lang.Integer getTierPK() { 89 return getNuminttie(); 90 } 91 92 96 public String toString() { 97 98 StringBuffer str = new StringBuffer ("{"); 99 100 str.append("{[Tiemor], "); 101 102 str.append("numinttie" + getNuminttie() + ", "); str.append("raisoctie" + getRaisoctie() + ", "); 109 str.append("{[Tiemor]"); 110 return (str.toString()); 111 } 112 113 116 public String toXML() { 117 118 StringBuffer str = new StringBuffer ("{"); 119 str.append("<docTiemor>"); 120 str.append("<numinttie>" + getNuminttie() + "</numinttie>"); 121 str.append("<raisoctie>" + getRaisoctie() + "</raisoctie>"); 122 123 str.append("</docTiemor>"); 124 return (str.toString()); 125 } 126 127 public boolean hasIdentity() { 128 return numinttieHasBeenSet(); 129 } 130 131 public void validateData() throws Exception { 132 if (numinttie == null) throw new Exception ("the field : 'numinttie' must not be null !"); 134 if (raisoctie == null) throw new Exception ("the field : 'raisoctie' must not be null !"); 135 } 136 } | Popular Tags |