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

ObjectAssocInfo

public class ObjectAssocInfo extends Object

Java class for object_assoc_info complex type.

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

<complexType name="object_assoc_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="assoc_type" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="assoc_info1" type="{http://api.facebook.com/1.0/}assoc_object_type"/>
<element name="assoc_info2" type="{http://api.facebook.com/1.0/}assoc_object_type"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
name
protected int
assocType
protected AssocObjectType
assocInfo1
protected AssocObjectType
assocInfo2
Constructors Summary
Methods Summary
public com.facebook.api.schema.AssocObjectTypegetAssocInfo1()
Gets the value of the assocInfo1 property.

return
possible object is {@link AssocObjectType }

        return assocInfo1;
    
public com.facebook.api.schema.AssocObjectTypegetAssocInfo2()
Gets the value of the assocInfo2 property.

return
possible object is {@link AssocObjectType }

        return assocInfo2;
    
public intgetAssocType()
Gets the value of the assocType property.

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

return
possible object is {@link String }

        return name;
    
public voidsetAssocInfo1(com.facebook.api.schema.AssocObjectType value)
Sets the value of the assocInfo1 property.

param
value allowed object is {@link AssocObjectType }

        this.assocInfo1 = value;
    
public voidsetAssocInfo2(com.facebook.api.schema.AssocObjectType value)
Sets the value of the assocInfo2 property.

param
value allowed object is {@link AssocObjectType }

        this.assocInfo2 = value;
    
public voidsetAssocType(int value)
Sets the value of the assocType property.

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

param
value allowed object is {@link String }

        this.name = value;