// // 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.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NetworkLinkType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="NetworkLinkType"> * <complexContent> * <extension base="{http://earth.google.com/kml/2.1}FeatureType"> * <sequence> * <element name="refreshVisibility" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="flyToView" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <choice minOccurs="0"> * <element ref="{http://earth.google.com/kml/2.1}Link"/> * <element name="Url" type="{http://earth.google.com/kml/2.1}LinkType"/> * </choice> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkLinkType", propOrder = { "refreshVisibility", "flyToView", "link", "url" }) public class NetworkLinkType extends FeatureType { @XmlElement(defaultValue = "0") protected Boolean refreshVisibility; @XmlElement(defaultValue = "0") protected Boolean flyToView; @XmlElement(name = "Link") protected LinkType link; @XmlElement(name = "Url") protected LinkType url; /** * Gets the value of the refreshVisibility property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRefreshVisibility() { return refreshVisibility; } /** * Sets the value of the refreshVisibility property. * * @param value * allowed object is * {@link Boolean } * */ public void setRefreshVisibility(Boolean value) { this.refreshVisibility = value; } /** * Gets the value of the flyToView property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFlyToView() { return flyToView; } /** * Sets the value of the flyToView property. * * @param value * allowed object is * {@link Boolean } * */ public void setFlyToView(Boolean value) { this.flyToView = value; } /** * Gets the value of the link property. * * @return * possible object is * {@link LinkType } * */ public LinkType getLink() { return link; } /** * Sets the value of the link property. * * @param value * allowed object is * {@link LinkType } * */ public void setLink(LinkType value) { this.link = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link LinkType } * */ public LinkType getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link LinkType } * */ public void setUrl(LinkType value) { this.url = value; } }