FileDocCategorySizeDatePackage
AddressDO.javaAPI DocExample789Tue Nov 13 22:54:04 GMT 2001com.titan.customer

AddressDO

public class AddressDO extends Object implements Serializable

Fields Summary
private String
street
private String
city
private String
state
private String
zip
private Integer
id
Constructors Summary
public AddressDO(Integer id, String street, String city, String state, String zip)

        this.id = id;
        this.street = street;
        this.city = city;
        this.state = state;
        this.zip = zip;
    
Methods Summary
public java.lang.StringgetCity()

        return city;
    
public java.lang.IntegergetId()

        return id;
    
public java.lang.StringgetState()

        return state;
    
public java.lang.StringgetStreet()

        return street;
    
public java.lang.StringgetZip()

        return zip;