FileDocCategorySizeDatePackage
Address.javaAPI DocApache Axis 1.42537Sat Apr 22 18:57:28 BST 2006test.wsdl.arrays3

Address

public class Address extends Object implements Serializable

Fields Summary
private String
city
private Phone
phoneNumber
private StateType
state
private String
streetName
private int
streetNum
private int
zip
private Phone[]
otherPhones
Constructors Summary
public Address()

    
Methods Summary
public java.lang.StringgetCity()
Gets the city value for this Address.

return
city

        return city;
    
public Phone[]getOtherPhones()

        return otherPhones;
    
public PhonegetPhoneNumber()
Gets the phoneNumber value for this Address.

return
phoneNumber

        return phoneNumber;
    
public StateTypegetState()
Gets the state value for this Address.

return
state

        return state;
    
public java.lang.StringgetStreetName()
Gets the streetName value for this Address.

return
streetName

        return streetName;
    
public intgetStreetNum()
Gets the streetNum value for this Address.

return
streetNum

        return streetNum;
    
public intgetZip()
Gets the zip value for this Address.

return
zip

        return zip;
    
public voidsetCity(java.lang.String city)
Sets the city value for this Address.

param
city

        this.city = city;
    
public voidsetOtherPhones(Phone[] phones)

        otherPhones = phones;
    
public voidsetPhoneNumber(Phone phoneNumber)
Sets the phoneNumber value for this Address.

param
phoneNumber

        this.phoneNumber = phoneNumber;
    
public voidsetState(StateType state)
Sets the state value for this Address.

param
state

        this.state = state;
    
public voidsetStreetName(java.lang.String streetName)
Sets the streetName value for this Address.

param
streetName

        this.streetName = streetName;
    
public voidsetStreetNum(int streetNum)
Sets the streetNum value for this Address.

param
streetNum

        this.streetNum = streetNum;
    
public voidsetZip(int zip)
Sets the zip value for this Address.

param
zip

        this.zip = zip;