1 6 7 package test; 8 9 13 public class TestBean { 14 15 18 private String stringProperty; 19 20 23 private int intProperty; 24 25 26 public TestBean() { 27 } 28 29 33 public String getStringProperty() { 34 return this.stringProperty; 35 } 36 37 41 public void setStringProperty(String stringProperty) { 42 this.stringProperty = stringProperty; 43 } 44 45 49 public int getIntProperty() { 50 return this.intProperty; 51 } 52 53 57 public void setIntProperty(int intProperty) { 58 this.intProperty = intProperty; 59 } 60 61 public int add(int x) { 62 return getIntProperty() + x ; 63 } 64 65 } 66 | Popular Tags |