1 22 package org.jboss.test.aop.basic; 23 24 28 public class Address 29 { 30 31 public Address() 32 { 33 } 34 35 public Address(String street, 36 String city, 37 String state) 38 { 39 this.street = street; 40 this.city = city; 41 this.state = state; 42 } 43 44 private String street; 45 private String city; 46 private String state; 47 48 49 public String getStreet() 50 { 51 return street; 52 } 53 54 public void setStreet(String street) 55 { 56 this.street = street; 57 } 58 59 public String getCity() 60 { 61 return city; 62 } 63 64 public void setCity(String city) 65 { 66 this.city = city; 67 } 68 69 public String getState() 70 { 71 return state; 72 } 73 74 public void setState(String state) 75 { 76 this.state = state; 77 } 78 79 } 80 81 | Popular Tags |