FileDocCategorySizeDatePackage
Preference.javaAPI DocGoogle Facebook API v1.42255Sat Oct 27 17:42:16 BST 2007com.facebook.api.schema

Preference

public class Preference extends Object

Java class for preference complex type.

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

<complexType name="preference">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="pref_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
prefId
protected String
value
Constructors Summary
Methods Summary
public longgetPrefId()
Gets the value of the prefId property.

        return prefId;
    
public java.lang.StringgetValue()
Gets the value of the value property.

return
possible object is {@link String }

        return value;
    
public voidsetPrefId(long value)
Sets the value of the prefId property.

        this.prefId = value;
    
public voidsetValue(java.lang.String value)
Sets the value of the value property.

param
value allowed object is {@link String }

        this.value = value;