// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // 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.08.13 at 10:12:26 PM MESZ // package slash.navigation.kml.binding22; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** * <p>Java class for ScaleType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ScaleType"> * <complexContent> * <extension base="{http://www.opengis.net/kml/2.2}AbstractObjectType"> * <sequence> * <element ref="{http://www.opengis.net/kml/2.2}x" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}y" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}z" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}ScaleSimpleExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}ScaleObjectExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ScaleType", propOrder = { "x", "y", "z", "scaleSimpleExtensionGroup", "scaleObjectExtensionGroup" }) public class ScaleType extends AbstractObjectType { @XmlElement(defaultValue = "1.0") protected Double x; @XmlElement(defaultValue = "1.0") protected Double y; @XmlElement(defaultValue = "1.0") protected Double z; @XmlElement(name = "ScaleSimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") protected List<Object> scaleSimpleExtensionGroup; @XmlElement(name = "ScaleObjectExtensionGroup") protected List<AbstractObjectType> scaleObjectExtensionGroup; /** * Gets the value of the x property. * * @return * possible object is * {@link Double } * */ public Double getX() { return x; } /** * Sets the value of the x property. * * @param value * allowed object is * {@link Double } * */ public void setX(Double value) { this.x = value; } /** * Gets the value of the y property. * * @return * possible object is * {@link Double } * */ public Double getY() { return y; } /** * Sets the value of the y property. * * @param value * allowed object is * {@link Double } * */ public void setY(Double value) { this.y = value; } /** * Gets the value of the z property. * * @return * possible object is * {@link Double } * */ public Double getZ() { return z; } /** * Sets the value of the z property. * * @param value * allowed object is * {@link Double } * */ public void setZ(Double value) { this.z = value; } /** * Gets the value of the scaleSimpleExtensionGroup property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the scaleSimpleExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getScaleSimpleExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getScaleSimpleExtensionGroup() { if (scaleSimpleExtensionGroup == null) { scaleSimpleExtensionGroup = new ArrayList<>(); } return this.scaleSimpleExtensionGroup; } /** * Gets the value of the scaleObjectExtensionGroup property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the scaleObjectExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getScaleObjectExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * */ public List<AbstractObjectType> getScaleObjectExtensionGroup() { if (scaleObjectExtensionGroup == null) { scaleObjectExtensionGroup = new ArrayList<>(); } return this.scaleObjectExtensionGroup; } }