// // 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: 2007.10.07 at 09:27:50 PM CEST // package slash.navigation.kml.binding21; 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 KmlType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="KmlType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="NetworkLinkControl" type="{http://earth.google.com/kml/2.1}NetworkLinkControlType" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.1}Feature" minOccurs="0"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KmlType", propOrder = { }) public class KmlType { @XmlElement(name = "NetworkLinkControl") protected NetworkLinkControlType networkLinkControl; @XmlElementRef(name = "Feature", namespace = "http://earth.google.com/kml/2.1", type = JAXBElement.class) protected JAXBElement<? extends FeatureType> feature; /** * Gets the value of the networkLinkControl property. * * @return * possible object is * {@link NetworkLinkControlType } * */ public NetworkLinkControlType getNetworkLinkControl() { return networkLinkControl; } /** * Sets the value of the networkLinkControl property. * * @param value * allowed object is * {@link NetworkLinkControlType } * */ public void setNetworkLinkControl(NetworkLinkControlType value) { this.networkLinkControl = value; } /** * Gets the value of the feature property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * {@link JAXBElement }{@code <}{@link FeatureType }{@code >} * */ public JAXBElement<? extends FeatureType> getFeature() { return feature; } /** * Sets the value of the feature property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * {@link JAXBElement }{@code <}{@link FeatureType }{@code >} * */ public void setFeature(JAXBElement<? extends FeatureType> value) { this.feature = value; } }