1 25 26 package org.objectweb.speedo.tutorial.pobjects.basics; 27 28 31 public class Address { 32 33 private String street; 34 private String city; 35 private Country country; 36 37 public Address(String street, String city, Country country) { 38 this.street = street; 39 this.city = city; 40 this.country = country; 41 } 42 43 public String getCity() { 44 return city; 45 } 46 public void setCity(String city) { 47 this.city = city; 48 } 49 public Country getCountry() { 50 return country; 51 } 52 public void setCountry(Country country) { 53 this.country = country; 54 } 55 public String getStreet() { 56 return street; 57 } 58 public void setStreet(String street) { 59 this.street = street; 60 } 61 62 public String toString(){ 63 return street + ", " + city + ", country=[" + country.toString() + "]"; 64 } 65 } 66 | Popular Tags |