// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-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: 2010.04.25 at 10:32:12 PM CEST // package pl.relationsystems.citynav.parser.stopover; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "location") public class Location { @XmlAttribute(required = true) protected BigDecimal x; @XmlAttribute(required = true) protected BigDecimal y; /** * Gets the value of the x property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getX() { return x; } /** * Sets the value of the x property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setX(BigDecimal value) { this.x = value; } /** * Gets the value of the y property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getY() { return y; } /** * Sets the value of the y property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setY(BigDecimal value) { this.y = value; } }