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

EducationInfo

public class EducationInfo extends Object

Java class for education_info complex type.

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

<complexType name="education_info">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="year" type="{http://api.facebook.com/1.0/}year"/>
<element name="concentrations">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence maxOccurs="unbounded" minOccurs="0">
<element name="concentration" type="{http://api.facebook.com/1.0/}concentration" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
name
protected int
year
protected Concentrations
concentrations
Constructors Summary
Methods Summary
public synchronized com.facebook.api.schema.EducationInfo$ConcentrationsgetConcentrations()
Gets the value of the concentrations property.

return
possible object is {@link EducationInfo.Concentrations }

        return concentrations;
    
public synchronized java.lang.StringgetName()
Gets the value of the name property.

return
possible object is {@link String }

        return name;
    
public synchronized intgetYear()
Gets the value of the year property.

        return year;
    
public synchronized voidsetConcentrations(com.facebook.api.schema.EducationInfo$Concentrations value)
Sets the value of the concentrations property.

param
value allowed object is {@link EducationInfo.Concentrations }

        this.concentrations = value;
    
public synchronized voidsetName(java.lang.String value)
Sets the value of the name property.

param
value allowed object is {@link String }

        this.name = value;
    
public synchronized voidsetYear(int value)
Sets the value of the year property.

        this.year = value;