// // 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.binding22gx; import slash.navigation.kml.binding22.UpdateType; 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 AnimatedUpdateType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AnimatedUpdateType"> * <complexContent> * <extension base="{http://www.google.com/kml/ext/2.2}AbstractTourPrimitiveType"> * <sequence> * <element ref="{http://www.google.com/kml/ext/2.2}duration" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}Update" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnimatedUpdateType", propOrder = { "duration", "update" }) public class AnimatedUpdateType extends AbstractTourPrimitiveType { @XmlElement(defaultValue = "0.0") protected Double duration; @XmlElement(name = "Update", namespace = "http://www.opengis.net/kml/2.2") protected UpdateType update; /** * Gets the value of the duration property. * * @return * possible object is * {@link Double } * */ public Double getDuration() { return duration; } /** * Sets the value of the duration property. * * @param value * allowed object is * {@link Double } * */ public void setDuration(Double value) { this.duration = value; } /** * Gets the value of the update property. * * @return * possible object is * {@link UpdateType } * */ public UpdateType getUpdate() { return update; } /** * Sets the value of the update property. * * @param value * allowed object is * {@link UpdateType } * */ public void setUpdate(UpdateType value) { this.update = value; } }