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

PhotoTag

public class PhotoTag extends Object

Java class for photo_tag complex type.

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

<complexType name="photo_tag">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="pid" type="{http://api.facebook.com/1.0/}pid"/>
<element name="subject" type="{http://api.facebook.com/1.0/}uid"/>
<element name="xcoord" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
<element name="ycoord" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
pid
protected int
subject
protected BigDecimal
xcoord
protected BigDecimal
ycoord
Constructors Summary
Methods Summary
public synchronized longgetPid()
Gets the value of the pid property.

        return pid;
    
public synchronized intgetSubject()
Gets the value of the subject property.

        return subject;
    
public synchronized java.math.BigDecimalgetXcoord()
Gets the value of the xcoord property.

return
possible object is {@link BigDecimal }

        return xcoord;
    
public synchronized java.math.BigDecimalgetYcoord()
Gets the value of the ycoord property.

return
possible object is {@link BigDecimal }

        return ycoord;
    
public synchronized voidsetPid(long value)
Sets the value of the pid property.

        this.pid = value;
    
public synchronized voidsetSubject(int value)
Sets the value of the subject property.

        this.subject = value;
    
public synchronized voidsetXcoord(java.math.BigDecimal value)
Sets the value of the xcoord property.

param
value allowed object is {@link BigDecimal }

        this.xcoord = value;
    
public synchronized voidsetYcoord(java.math.BigDecimal value)
Sets the value of the ycoord property.

param
value allowed object is {@link BigDecimal }

        this.ycoord = value;