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

EventMembers

public class EventMembers extends Object

Java class for event_members complex type.

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

<complexType name="event_members">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="attending">
<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="unsure">
<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="declined">
<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 Attending
attending
protected Unsure
unsure
protected Declined
declined
protected NotReplied
notReplied
Constructors Summary
Methods Summary
public synchronized com.facebook.api.schema.EventMembers$AttendinggetAttending()
Gets the value of the attending property.

return
possible object is {@link EventMembers.Attending }

        return attending;
    
public synchronized com.facebook.api.schema.EventMembers$DeclinedgetDeclined()
Gets the value of the declined property.

return
possible object is {@link EventMembers.Declined }

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

return
possible object is {@link EventMembers.NotReplied }

        return notReplied;
    
public synchronized com.facebook.api.schema.EventMembers$UnsuregetUnsure()
Gets the value of the unsure property.

return
possible object is {@link EventMembers.Unsure }

        return unsure;
    
public synchronized voidsetAttending(com.facebook.api.schema.EventMembers$Attending value)
Sets the value of the attending property.

param
value allowed object is {@link EventMembers.Attending }

        this.attending = value;
    
public synchronized voidsetDeclined(com.facebook.api.schema.EventMembers$Declined value)
Sets the value of the declined property.

param
value allowed object is {@link EventMembers.Declined }

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

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

        this.notReplied = value;
    
public synchronized voidsetUnsure(com.facebook.api.schema.EventMembers$Unsure value)
Sets the value of the unsure property.

param
value allowed object is {@link EventMembers.Unsure }

        this.unsure = value;