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

Group

public class Group extends Object

Java class for group complex type.

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

<complexType name="group">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="gid" type="{http://api.facebook.com/1.0/}gid"/>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="nid" type="{http://api.facebook.com/1.0/}nid"/>
<element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="group_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="group_subtype" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="recent_news" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="pic" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="pic_big" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="pic_small" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="creator" type="{http://api.facebook.com/1.0/}uid"/>
<element name="update_time" type="{http://api.facebook.com/1.0/}time"/>
<element name="office" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="website" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="venue" type="{http://api.facebook.com/1.0/}location"/>
<element name="pic_square" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
gid
protected String
name
protected long
nid
protected String
description
protected String
groupType
protected String
groupSubtype
protected String
recentNews
protected String
pic
protected String
picBig
protected String
picSmall
protected Long
creator
protected int
updateTime
protected String
office
protected String
website
protected Location
venue
protected String
picSquare
Constructors Summary
Methods Summary
public synchronized java.lang.LonggetCreator()
Gets the value of the creator property.

return
possible object is {@link Long }

        return creator;
    
public synchronized java.lang.StringgetDescription()
Gets the value of the description property.

return
possible object is {@link String }

        return description;
    
public synchronized longgetGid()
Gets the value of the gid property.

        return gid;
    
public synchronized java.lang.StringgetGroupSubtype()
Gets the value of the groupSubtype property.

return
possible object is {@link String }

        return groupSubtype;
    
public synchronized java.lang.StringgetGroupType()
Gets the value of the groupType property.

return
possible object is {@link String }

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

return
possible object is {@link String }

        return name;
    
public synchronized longgetNid()
Gets the value of the nid property.

        return nid;
    
public synchronized java.lang.StringgetOffice()
Gets the value of the office property.

return
possible object is {@link String }

        return office;
    
public synchronized java.lang.StringgetPic()
Gets the value of the pic property.

return
possible object is {@link String }

        return pic;
    
public synchronized java.lang.StringgetPicBig()
Gets the value of the picBig property.

return
possible object is {@link String }

        return picBig;
    
public synchronized java.lang.StringgetPicSmall()
Gets the value of the picSmall property.

return
possible object is {@link String }

        return picSmall;
    
public synchronized java.lang.StringgetPicSquare()
Gets the value of the picSquare property.

return
possible object is {@link String }

        return picSquare;
    
public synchronized java.lang.StringgetRecentNews()
Gets the value of the recentNews property.

return
possible object is {@link String }

        return recentNews;
    
public synchronized intgetUpdateTime()
Gets the value of the updateTime property.

        return updateTime;
    
public synchronized com.facebook.api.schema.LocationgetVenue()
Gets the value of the venue property.

return
possible object is {@link Location }

        return venue;
    
public synchronized java.lang.StringgetWebsite()
Gets the value of the website property.

return
possible object is {@link String }

        return website;
    
public synchronized voidsetCreator(java.lang.Long value)
Sets the value of the creator property.

param
value allowed object is {@link Long }

        this.creator = value;
    
public synchronized voidsetDescription(java.lang.String value)
Sets the value of the description property.

param
value allowed object is {@link String }

        this.description = value;
    
public synchronized voidsetGid(long value)
Sets the value of the gid property.

        this.gid = value;
    
public synchronized voidsetGroupSubtype(java.lang.String value)
Sets the value of the groupSubtype property.

param
value allowed object is {@link String }

        this.groupSubtype = value;
    
public synchronized voidsetGroupType(java.lang.String value)
Sets the value of the groupType property.

param
value allowed object is {@link String }

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

param
value allowed object is {@link String }

        this.name = value;
    
public synchronized voidsetNid(long value)
Sets the value of the nid property.

        this.nid = value;
    
public synchronized voidsetOffice(java.lang.String value)
Sets the value of the office property.

param
value allowed object is {@link String }

        this.office = value;
    
public synchronized voidsetPic(java.lang.String value)
Sets the value of the pic property.

param
value allowed object is {@link String }

        this.pic = value;
    
public synchronized voidsetPicBig(java.lang.String value)
Sets the value of the picBig property.

param
value allowed object is {@link String }

        this.picBig = value;
    
public synchronized voidsetPicSmall(java.lang.String value)
Sets the value of the picSmall property.

param
value allowed object is {@link String }

        this.picSmall = value;
    
public synchronized voidsetPicSquare(java.lang.String value)
Sets the value of the picSquare property.

param
value allowed object is {@link String }

        this.picSquare = value;
    
public synchronized voidsetRecentNews(java.lang.String value)
Sets the value of the recentNews property.

param
value allowed object is {@link String }

        this.recentNews = value;
    
public synchronized voidsetUpdateTime(int value)
Sets the value of the updateTime property.

        this.updateTime = value;
    
public synchronized voidsetVenue(com.facebook.api.schema.Location value)
Sets the value of the venue property.

param
value allowed object is {@link Location }

        this.venue = value;
    
public synchronized voidsetWebsite(java.lang.String value)
Sets the value of the website property.

param
value allowed object is {@link String }

        this.website = value;