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

HsInfo

public class HsInfo extends Object

Java class for hs_info complex type.

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

<complexType name="hs_info">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="hs1_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="hs2_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="grad_year" type="{http://api.facebook.com/1.0/}year"/>
<element name="hs1_id" type="{http://api.facebook.com/1.0/}hsid"/>
<element name="hs2_id" type="{http://api.facebook.com/1.0/}hsid"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
hs1Name
protected String
hs2Name
protected int
gradYear
protected long
hs1Id
protected long
hs2Id
Constructors Summary
Methods Summary
public synchronized intgetGradYear()
Gets the value of the gradYear property.

        return gradYear;
    
public synchronized longgetHs1Id()
Gets the value of the hs1Id property.

        return hs1Id;
    
public synchronized java.lang.StringgetHs1Name()
Gets the value of the hs1Name property.

return
possible object is {@link String }

        return hs1Name;
    
public synchronized longgetHs2Id()
Gets the value of the hs2Id property.

        return hs2Id;
    
public synchronized java.lang.StringgetHs2Name()
Gets the value of the hs2Name property.

return
possible object is {@link String }

        return hs2Name;
    
public synchronized voidsetGradYear(int value)
Sets the value of the gradYear property.

        this.gradYear = value;
    
public synchronized voidsetHs1Id(long value)
Sets the value of the hs1Id property.

        this.hs1Id = value;
    
public synchronized voidsetHs1Name(java.lang.String value)
Sets the value of the hs1Name property.

param
value allowed object is {@link String }

        this.hs1Name = value;
    
public synchronized voidsetHs2Id(long value)
Sets the value of the hs2Id property.

        this.hs2Id = value;
    
public synchronized voidsetHs2Name(java.lang.String value)
Sets the value of the hs2Name property.

param
value allowed object is {@link String }

        this.hs2Name = value;