FileDocCategorySizeDatePackage
Address.javaAPI DocExample667Sun Nov 03 21:10:58 GMT 2002com.mediamania.store

Address.java

package com.mediamania.store;


public class Address {
    private String      street;
    private String      city;
    private String      state;
    private String      zipcode;
    
    private Address()
    { }
    
    public Address(String street, String city, String state, String zipcode) {
        this.street = street;
        this.city = city;
        this.state = state;
        this.zipcode = zipcode;
    }    
    public String getStreet() {
        return street;
    }
    public String getCity() {
        return city;
    }
    public String getState() {
        return state;
    }
    public String getZipcode() {
        return zipcode;
    }
}