All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.api.schema.PhotoTag Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// 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;


/**
 * 

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>
 * 
* * */ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy