FileDocCategorySizeDatePackage
UsersGetInfoResponse.javaAPI DocGoogle Facebook API v1.42925Tue Oct 23 20:16:08 BST 2007com.facebook.api.schema

UsersGetInfoResponse

public class UsersGetInfoResponse extends Object

Java class for anonymous complex type.

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

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

Fields Summary
protected List
user
protected Boolean
list
Constructors Summary
Methods Summary
public synchronized java.util.ListgetUser()
Gets the value of the user property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the user property.

For example, to add a new item, do as follows:

getUser().add(newItem);

Objects of the following type(s) are allowed in the list {@link User }

        if (user == null) {
            user = new ArrayList<User>();
        }
        return this.user;
    
public synchronized java.lang.BooleanisList()
Gets the value of the list property.

return
possible object is {@link Boolean }

        return list;
    
public synchronized voidsetList(java.lang.Boolean value)
Sets the value of the list property.

param
value allowed object is {@link Boolean }

        this.list = value;