FileDocCategorySizeDatePackage
ObjectAssociation.javaAPI DocGoogle Facebook API v1.43633Sat Oct 27 16:53:40 BST 2007com.facebook.api.schema

ObjectAssociation

public class ObjectAssociation extends Object

Java class for object_association complex type.

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

<complexType name="object_association">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="id1" type="{http://www.w3.org/2001/XMLSchema}long"/>
<element name="id2" type="{http://www.w3.org/2001/XMLSchema}long"/>
<element name="data" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
name
protected long
id1
protected long
id2
protected String
data
protected int
time
Constructors Summary
Methods Summary
public java.lang.StringgetData()
Gets the value of the data property.

return
possible object is {@link String }

        return data;
    
public longgetId1()
Gets the value of the id1 property.

        return id1;
    
public longgetId2()
Gets the value of the id2 property.

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

return
possible object is {@link String }

        return name;
    
public intgetTime()
Gets the value of the time property.

        return time;
    
public voidsetData(java.lang.String value)
Sets the value of the data property.

param
value allowed object is {@link String }

        this.data = value;
    
public voidsetId1(long value)
Sets the value of the id1 property.

        this.id1 = value;
    
public voidsetId2(long value)
Sets the value of the id2 property.

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

param
value allowed object is {@link String }

        this.name = value;
    
public voidsetTime(int value)
Sets the value of the time property.

        this.time = value;