// // 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.AbstractViewType; import slash.navigation.kml.binding22.CameraType; import slash.navigation.kml.binding22.LookAtType; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FlyToType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="FlyToType"> * <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.google.com/kml/ext/2.2}flyToMode" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}AbstractViewGroup" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlyToType", propOrder = { "duration", "flyToMode", "abstractViewGroup" }) public class FlyToType extends AbstractTourPrimitiveType { @XmlElement(defaultValue = "0.0") protected Double duration; @XmlElement(defaultValue = "bounce") protected FlyToModeEnumType flyToMode; @XmlElementRef(name = "AbstractViewGroup", namespace = "http://www.opengis.net/kml/2.2", type = JAXBElement.class) protected JAXBElement<? extends AbstractViewType> abstractViewGroup; /** * 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 flyToMode property. * * @return * possible object is * {@link FlyToModeEnumType } * */ public FlyToModeEnumType getFlyToMode() { return flyToMode; } /** * Sets the value of the flyToMode property. * * @param value * allowed object is * {@link FlyToModeEnumType } * */ public void setFlyToMode(FlyToModeEnumType value) { this.flyToMode = value; } /** * Gets the value of the abstractViewGroup property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link LookAtType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractViewType }{@code >} * {@link JAXBElement }{@code <}{@link CameraType }{@code >} * */ public JAXBElement<? extends AbstractViewType> getAbstractViewGroup() { return abstractViewGroup; } /** * Sets the value of the abstractViewGroup property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link LookAtType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractViewType }{@code >} * {@link JAXBElement }{@code <}{@link CameraType }{@code >} * */ public void setAbstractViewGroup(JAXBElement<? extends AbstractViewType> value) { this.abstractViewGroup = value; } }