1 6 7 package albel.tags.table.test; 8 9 13 public class TestBean 14 { 15 16 17 private String name; 18 19 20 private int count; 21 22 23 public TestBean() 24 { 25 } 26 27 31 public String getName() 32 { 33 return this.name; 34 } 35 36 40 public void setName(String name) 41 { 42 this.name = name; 43 } 44 45 49 public int getCount() 50 { 51 return this.count; 52 } 53 54 58 public void setCount(int count) 59 { 60 this.count = count; 61 } 62 63 } 64 | Popular Tags |