// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-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: 2009.02.17 at 01:40:15 PM MEZ // package slash.navigation.kml.binding20; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import java.math.BigDecimal; /** * <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="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * <attribute name="x" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}decimal"> * <minInclusive value="-1"/> * </restriction> * </simpleType> * </attribute> * <attribute name="xunits" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="pixels"/> * <enumeration value="insetPixels"/> * <enumeration value="fraction"/> * </restriction> * </simpleType> * </attribute> * <attribute name="y" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}decimal"> * <minInclusive value="-1"/> * </restriction> * </simpleType> * </attribute> * <attribute name="yunits" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="pixels"/> * <enumeration value="insetPixels"/> * <enumeration value="fraction"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "size") public class Size { @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; @XmlAttribute(required = true) protected BigDecimal x; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String xunits; @XmlAttribute(required = true) protected BigDecimal y; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String yunits; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * 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 xunits property. * * @return * possible object is * {@link String } * */ public String getXunits() { return xunits; } /** * Sets the value of the xunits property. * * @param value * allowed object is * {@link String } * */ public void setXunits(String value) { this.xunits = 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; } /** * Gets the value of the yunits property. * * @return * possible object is * {@link String } * */ public String getYunits() { return yunits; } /** * Sets the value of the yunits property. * * @param value * allowed object is * {@link String } * */ public void setYunits(String value) { this.yunits = value; } }