www.pudn.com > chap8.rar > Address.java


public class Address implements java.io.Serializable { 
 
    private String street; 
    private String city; 
    private String state; 
    private String zip; 
 
    /** 
     * Construct a new dependent object instance. 
     */ 
    public Address(String street, String city, String state, String zip) { 
        this.street = street; 
        this.city = city; 
        this.state = state; 
        this.zip = zip; 
 
    } 
 
     
    public String getStreet() { 
        return this.street; 
    } 
     
    public String getCity() { 
        return this.city; 
    } 
     
    public String getState() { 
        return this.state; 
    } 
     
    public String getZip() { 
        return this.zip; 
    } 
     
}