1 22 package org.jboss.test.server.support; 23 24 public class TestBeanImpl 25 implements TestBean 26 { 27 private String stringProperty; 28 private int intProperty; 29 private Integer integerProperty; 30 31 public TestBeanImpl() 32 { 33 } 34 35 public Integer getIntegerProperty() 36 { 37 return integerProperty; 38 } 39 40 public int getIntProperty() 41 { 42 return intProperty; 43 } 44 45 public String getStringPropery() 46 { 47 return stringProperty; 48 } 49 50 public void setIntegerProperty(Integer x) 51 { 52 this.integerProperty = x; 53 } 54 55 public void setIntProperty(int x) 56 { 57 this.intProperty = x; 58 } 59 60 public void setStringProperty(String x) 61 { 62 this.stringProperty = x; 63 } 64 65 } 66 | Popular Tags |