1 package org.apache.ojb.odmg.shared; 2 3 import java.io.Serializable ; 4 import java.util.Locale ; 5 6 public class TestClassA implements Serializable 7 { 8 private String oid; 9 private String value1; 10 private String value2; 11 private int value3; 12 private Locale locale = Locale.GERMANY; 13 14 private String boid; 15 private TestClassB b; 16 20 public String getValue1() 21 { 22 return value1; 23 } 24 25 29 public void setValue1(String value1) 30 { 31 this.value1 = value1; 32 } 33 34 38 public String getValue2() 39 { 40 return value2; 41 } 42 43 47 public void setValue2(String value2) 48 { 49 this.value2 = value2; 50 } 51 52 56 public int getValue3() 57 { 58 return value3; 59 } 60 61 65 public void setValue3(int value3) 66 { 67 this.value3 = value3; 68 } 69 70 74 public TestClassB getB() 75 { 76 return b; 77 } 78 79 83 public void setB(TestClassB b) 84 { 85 this.b = b; 86 } 87 88 92 public String getOid() 93 { 94 return oid; 95 } 96 97 101 public void setOid(String oid) 102 { 103 this.oid = oid; 104 } 105 106 110 public String getBoid() 111 { 112 return boid; 113 } 114 115 119 public void setBoid(String boid) 120 { 121 this.boid = boid; 122 } 123 124 public Locale getLocale() 125 { 126 return locale; 127 } 128 129 public void setLocale(Locale locale) 130 { 131 this.locale = locale; 132 } 133 } 134 | Popular Tags |