FileDocCategorySizeDatePackage
WorkInfo.javaAPI DocGoogle Facebook API v1.45392Tue Oct 23 20:16:08 BST 2007com.facebook.api.schema

WorkInfo

public class WorkInfo extends Object

Java class for work_info complex type.

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

<complexType name="work_info">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="location" type="{http://api.facebook.com/1.0/}location"/>
<element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="position" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="start_date" type="{http://api.facebook.com/1.0/}date"/>
<element name="end_date" type="{http://api.facebook.com/1.0/}date"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected Location
location
protected String
companyName
protected String
position
protected String
description
protected String
startDate
protected String
endDate
Constructors Summary
Methods Summary
public synchronized java.lang.StringgetCompanyName()
Gets the value of the companyName property.

return
possible object is {@link String }

        return companyName;
    
public synchronized java.lang.StringgetDescription()
Gets the value of the description property.

return
possible object is {@link String }

        return description;
    
public synchronized java.lang.StringgetEndDate()
Gets the value of the endDate property.

return
possible object is {@link String }

        return endDate;
    
public synchronized com.facebook.api.schema.LocationgetLocation()
Gets the value of the location property.

return
possible object is {@link Location }

        return location;
    
public synchronized java.lang.StringgetPosition()
Gets the value of the position property.

return
possible object is {@link String }

        return position;
    
public synchronized java.lang.StringgetStartDate()
Gets the value of the startDate property.

return
possible object is {@link String }

        return startDate;
    
public synchronized voidsetCompanyName(java.lang.String value)
Sets the value of the companyName property.

param
value allowed object is {@link String }

        this.companyName = value;
    
public synchronized voidsetDescription(java.lang.String value)
Sets the value of the description property.

param
value allowed object is {@link String }

        this.description = value;
    
public synchronized voidsetEndDate(java.lang.String value)
Sets the value of the endDate property.

param
value allowed object is {@link String }

        this.endDate = value;
    
public synchronized voidsetLocation(com.facebook.api.schema.Location value)
Sets the value of the location property.

param
value allowed object is {@link Location }

        this.location = value;
    
public synchronized voidsetPosition(java.lang.String value)
Sets the value of the position property.

param
value allowed object is {@link String }

        this.position = value;
    
public synchronized voidsetStartDate(java.lang.String value)
Sets the value of the startDate property.

param
value allowed object is {@link String }

        this.startDate = value;