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

PhotoTag.java

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-fcs 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2007.06.20 at 06:10:07 PM HST 
//


package com.facebook.api.schema;

import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for photo_tag complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * <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>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "photo_tag", propOrder = {
    "pid",
    "subject",
    "xcoord",
    "ycoord"
})
public class PhotoTag {

    protected long pid;
    protected int subject;
    @XmlElement(required = true)
    protected BigDecimal xcoord;
    @XmlElement(required = true)
    protected BigDecimal ycoord;

    /**
     * Gets the value of the pid property.
     * 
     */
    public synchronized long getPid() {
        return pid;
    }

    /**
     * Sets the value of the pid property.
     * 
     */
    public synchronized void setPid(long value) {
        this.pid = value;
    }

    /**
     * Gets the value of the subject property.
     * 
     */
    public synchronized int getSubject() {
        return subject;
    }

    /**
     * Sets the value of the subject property.
     * 
     */
    public synchronized void setSubject(int value) {
        this.subject = value;
    }

    /**
     * Gets the value of the xcoord property.
     * 
     * @return
     *     possible object is
     *     {@link BigDecimal }
     *     
     */
    public synchronized BigDecimal getXcoord() {
        return xcoord;
    }

    /**
     * Sets the value of the xcoord property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigDecimal }
     *     
     */
    public synchronized void setXcoord(BigDecimal value) {
        this.xcoord = value;
    }

    /**
     * Gets the value of the ycoord property.
     * 
     * @return
     *     possible object is
     *     {@link BigDecimal }
     *     
     */
    public synchronized BigDecimal getYcoord() {
        return ycoord;
    }

    /**
     * Sets the value of the ycoord property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigDecimal }
     *     
     */
    public synchronized void setYcoord(BigDecimal value) {
        this.ycoord = value;
    }

}