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

Photo

public class Photo extends Object

Java class for photo complex type.

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

<complexType name="photo">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="pid" type="{http://api.facebook.com/1.0/}pid"/>
<element name="aid" type="{http://api.facebook.com/1.0/}aid"/>
<element name="owner" type="{http://api.facebook.com/1.0/}uid"/>
<element name="src" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="src_big" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="src_small" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="link" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="caption" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="created" type="{http://api.facebook.com/1.0/}time"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
pid
protected long
aid
protected long
owner
protected String
src
protected String
srcBig
protected String
srcSmall
protected String
link
protected String
caption
protected int
created
Constructors Summary
Methods Summary
public synchronized longgetAid()
Gets the value of the aid property.

        return aid;
    
public synchronized java.lang.StringgetCaption()
Gets the value of the caption property.

return
possible object is {@link String }

        return caption;
    
public synchronized intgetCreated()
Gets the value of the created property.

        return created;
    
public synchronized java.lang.StringgetLink()
Gets the value of the link property.

return
possible object is {@link String }

        return link;
    
public synchronized longgetOwner()
Gets the value of the owner property.

        return owner;
    
public synchronized longgetPid()
Gets the value of the pid property.

        return pid;
    
public synchronized java.lang.StringgetSrc()
Gets the value of the src property.

return
possible object is {@link String }

        return src;
    
public synchronized java.lang.StringgetSrcBig()
Gets the value of the srcBig property.

return
possible object is {@link String }

        return srcBig;
    
public synchronized java.lang.StringgetSrcSmall()
Gets the value of the srcSmall property.

return
possible object is {@link String }

        return srcSmall;
    
public synchronized voidsetAid(long value)
Sets the value of the aid property.

        this.aid = value;
    
public synchronized voidsetCaption(java.lang.String value)
Sets the value of the caption property.

param
value allowed object is {@link String }

        this.caption = value;
    
public synchronized voidsetCreated(int value)
Sets the value of the created property.

        this.created = value;
    
public synchronized voidsetLink(java.lang.String value)
Sets the value of the link property.

param
value allowed object is {@link String }

        this.link = value;
    
public synchronized voidsetOwner(long value)
Sets the value of the owner property.

        this.owner = value;
    
public synchronized voidsetPid(long value)
Sets the value of the pid property.

        this.pid = value;
    
public synchronized voidsetSrc(java.lang.String value)
Sets the value of the src property.

param
value allowed object is {@link String }

        this.src = value;
    
public synchronized voidsetSrcBig(java.lang.String value)
Sets the value of the srcBig property.

param
value allowed object is {@link String }

        this.srcBig = value;
    
public synchronized voidsetSrcSmall(java.lang.String value)
Sets the value of the srcSmall property.

param
value allowed object is {@link String }

        this.srcSmall = value;