1 28 29 30 34 public class CustomBean 35 { 36 37 38 41 private String city = null; 42 private Integer id = null; 43 private String name = null; 44 private String street = null; 45 46 47 50 public CustomBean( 51 String pcity, 52 Integer pid, 53 String pname, 54 String pstreet 55 ) 56 { 57 city = pcity; 58 id = pid; 59 name = pname; 60 street = pstreet; 61 } 62 63 64 67 public CustomBean getMe() 68 { 69 return this; 70 } 71 72 73 76 public String getCity() 77 { 78 return city; 79 } 80 81 82 85 public Integer getId() 86 { 87 return id; 88 } 89 90 91 94 public String getName() 95 { 96 return name; 97 } 98 99 100 103 public String getStreet() 104 { 105 return street; 106 } 107 108 109 } 110 | Popular Tags |