FileDocCategorySizeDatePackage
Location.javaAPI DocGoogle Facebook API v1.44413Tue Oct 23 20:16:10 BST 2007com.facebook.api.schema

Location

public class Location extends Object

Java class for location complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="location">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="state" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="zip" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
street
protected String
city
protected String
state
protected String
country
protected Integer
zip
Constructors Summary
Methods Summary
public synchronized java.lang.StringgetCity()
Gets the value of the city property.

return
possible object is {@link String }

        return city;
    
public synchronized java.lang.StringgetCountry()
Gets the value of the country property.

return
possible object is {@link String }

        return country;
    
public synchronized java.lang.StringgetState()
Gets the value of the state property.

return
possible object is {@link String }

        return state;
    
public synchronized java.lang.StringgetStreet()
Gets the value of the street property.

return
possible object is {@link String }

        return street;
    
public synchronized java.lang.IntegergetZip()
Gets the value of the zip property.

return
possible object is {@link Integer }

        return zip;
    
public synchronized voidsetCity(java.lang.String value)
Sets the value of the city property.

param
value allowed object is {@link String }

        this.city = value;
    
public synchronized voidsetCountry(java.lang.String value)
Sets the value of the country property.

param
value allowed object is {@link String }

        this.country = value;
    
public synchronized voidsetState(java.lang.String value)
Sets the value of the state property.

param
value allowed object is {@link String }

        this.state = value;
    
public synchronized voidsetStreet(java.lang.String value)
Sets the value of the street property.

param
value allowed object is {@link String }

        this.street = value;
    
public synchronized voidsetZip(java.lang.Integer value)
Sets the value of the zip property.

param
value allowed object is {@link Integer }

        this.zip = value;