1 22 package org.jboss.test.support.jar1.simple1; 23 24 import java.math.BigDecimal ; 25 import java.math.BigInteger ; 26 import java.util.Collection ; 27 import java.util.Date ; 28 import java.util.List ; 29 import java.util.Properties ; 30 import java.util.Set ; 31 32 38 public class Bean1 implements ISimpleBean 39 { 40 41 43 private static final long serialVersionUID = 1L; 44 45 47 48 private String constructorUsed; 49 50 51 private String aString; 52 53 54 private Byte aByte; 55 56 57 private Boolean aBoolean; 58 59 60 private Character aCharacter; 61 62 63 private Short aShort; 64 65 66 private Integer anInt; 67 68 69 private Long aLong; 70 71 72 private Float aFloat; 73 74 75 private Double aDouble; 76 77 78 private Date aDate; 79 80 81 private BigDecimal aBigDecimal; 82 83 84 private BigInteger aBigInteger; 85 86 87 private byte abyte; 88 89 90 private boolean aboolean; 91 92 93 private char achar; 94 95 96 private short ashort; 97 98 99 private int anint; 100 101 102 private long along; 103 104 105 private float afloat; 106 107 108 private double adouble; 109 110 111 private ISimpleBean other; 112 113 114 private Collection collection; 115 116 117 private List aList; 118 119 private Set aSet; 120 121 private Properties props; 122 123 125 127 public Bean1() 128 { 129 constructorUsed = "()"; 130 } 131 132 public Bean1(String string) 133 { 134 constructorUsed = string; 135 } 136 137 public Bean1(ISimpleBean other) 138 { 139 constructorUsed = ISimpleBean.class.getName(); 140 this.other = other; 141 } 142 143 145 public String getConstructorUsed() 146 { 147 return constructorUsed; 148 } 149 150 public BigDecimal getABigDecimal() 151 { 152 return aBigDecimal; 153 } 154 155 public void setABigDecimal(BigDecimal bigDecimal) 156 { 157 aBigDecimal = bigDecimal; 158 } 159 160 public BigInteger getABigInteger() 161 { 162 return aBigInteger; 163 } 164 165 public void setABigInteger(BigInteger bigInteger) 166 { 167 aBigInteger = bigInteger; 168 } 169 170 public boolean isAboolean() 171 { 172 return aboolean; 173 } 174 175 public void setAboolean(boolean aboolean) 176 { 177 this.aboolean = aboolean; 178 } 179 180 public Boolean getABoolean() 181 { 182 return aBoolean; 183 } 184 185 public void setABoolean(Boolean boolean1) 186 { 187 aBoolean = boolean1; 188 } 189 190 public byte getAbyte() 191 { 192 return abyte; 193 } 194 195 public void setAbyte(byte abyte) 196 { 197 this.abyte = abyte; 198 } 199 200 public Byte getAByte() 201 { 202 return aByte; 203 } 204 205 public void setAByte(Byte byte1) 206 { 207 aByte = byte1; 208 } 209 210 public char getAchar() 211 { 212 return achar; 213 } 214 215 public void setAchar(char achar) 216 { 217 this.achar = achar; 218 } 219 220 public Character getACharacter() 221 { 222 return aCharacter; 223 } 224 225 public void setACharacter(Character character) 226 { 227 aCharacter = character; 228 } 229 230 public Date getADate() 231 { 232 return aDate; 233 } 234 235 public void setADate(Date date) 236 { 237 aDate = date; 238 } 239 240 public double getAdouble() 241 { 242 return adouble; 243 } 244 245 public void setAdouble(double adouble) 246 { 247 this.adouble = adouble; 248 } 249 250 public Double getADouble() 251 { 252 return aDouble; 253 } 254 255 public void setADouble(Double double1) 256 { 257 aDouble = double1; 258 } 259 260 public float getAfloat() 261 { 262 return afloat; 263 } 264 265 public void setAfloat(float afloat) 266 { 267 this.afloat = afloat; 268 } 269 270 public Float getAFloat() 271 { 272 return aFloat; 273 } 274 275 public void setAFloat(Float float1) 276 { 277 aFloat = float1; 278 } 279 280 public long getAlong() 281 { 282 return along; 283 } 284 285 public void setAlong(long along) 286 { 287 this.along = along; 288 } 289 290 public Long getALong() 291 { 292 return aLong; 293 } 294 295 public void setALong(Long long1) 296 { 297 aLong = long1; 298 } 299 300 public int getAnint() 301 { 302 return anint; 303 } 304 305 public void setAnint(int anint) 306 { 307 this.anint = anint; 308 } 309 310 public Integer getAnInt() 311 { 312 return anInt; 313 } 314 315 public void setAnInt(Integer anInt) 316 { 317 this.anInt = anInt; 318 } 319 320 public short getAshort() 321 { 322 return ashort; 323 } 324 325 public void setAshort(short ashort) 326 { 327 this.ashort = ashort; 328 } 329 330 public Short getAShort() 331 { 332 return aShort; 333 } 334 335 public void setAShort(Short short1) 336 { 337 aShort = short1; 338 } 339 340 public String getAString() 341 { 342 return aString; 343 } 344 345 public void setAString(String string) 346 { 347 aString = string; 348 } 349 350 public ISimpleBean getOther() 351 { 352 return other; 353 } 354 355 public void setOther(ISimpleBean other) 356 { 357 this.other = other; 358 } 359 360 public Collection getCollection() 361 { 362 return collection; 363 } 364 365 public void setCollection(Collection collection) 366 { 367 this.collection = collection; 368 } 369 370 public List getAList() 371 { 372 return aList; 373 } 374 375 public void setAList(List aList) 376 { 377 this.aList = aList; 378 } 379 380 public Set getASet() 381 { 382 return aSet; 383 } 384 385 public void setASet(Set aSet) 386 { 387 this.aSet = aSet; 388 } 389 390 public Properties getProps() 391 { 392 return props; 393 } 394 395 public void setProps(Properties props) 396 { 397 this.props = props; 398 } 399 400 } 401 | Popular Tags |