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

GroupMembers

public class GroupMembers extends Object

Java class for group_members complex type.

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

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

Fields Summary
protected Members
members
protected Admins
admins
protected Officers
officers
protected NotReplied
notReplied
Constructors Summary
Methods Summary
public synchronized com.facebook.api.schema.GroupMembers$AdminsgetAdmins()
Gets the value of the admins property.

return
possible object is {@link GroupMembers.Admins }

        return admins;
    
public synchronized com.facebook.api.schema.GroupMembers$MembersgetMembers()
Gets the value of the members property.

return
possible object is {@link GroupMembers.Members }

        return members;
    
public synchronized com.facebook.api.schema.GroupMembers$NotRepliedgetNotReplied()
Gets the value of the notReplied property.

return
possible object is {@link GroupMembers.NotReplied }

        return notReplied;
    
public synchronized com.facebook.api.schema.GroupMembers$OfficersgetOfficers()
Gets the value of the officers property.

return
possible object is {@link GroupMembers.Officers }

        return officers;
    
public synchronized voidsetAdmins(com.facebook.api.schema.GroupMembers$Admins value)
Sets the value of the admins property.

param
value allowed object is {@link GroupMembers.Admins }

        this.admins = value;
    
public synchronized voidsetMembers(com.facebook.api.schema.GroupMembers$Members value)
Sets the value of the members property.

param
value allowed object is {@link GroupMembers.Members }

        this.members = value;
    
public synchronized voidsetNotReplied(com.facebook.api.schema.GroupMembers$NotReplied value)
Sets the value of the notReplied property.

param
value allowed object is {@link GroupMembers.NotReplied }

        this.notReplied = value;
    
public synchronized voidsetOfficers(com.facebook.api.schema.GroupMembers$Officers value)
Sets the value of the officers property.

param
value allowed object is {@link GroupMembers.Officers }

        this.officers = value;