// // 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: 2009.02.17 at 01:40:15 PM MEZ // package slash.navigation.kml.binding20; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element ref="{http://earth.google.com/kml/2.0}Url"/> * <element ref="{http://earth.google.com/kml/2.0}flyToView" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}description" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}name" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}refreshVisibility" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}visibility" minOccurs="0"/> * </all> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "NetworkLink") public class NetworkLink { @XmlElement(name = "Url", required = true) protected Url url; protected Boolean flyToView; protected String description; protected String name; protected Boolean refreshVisibility; protected Boolean visibility; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; /** * Gets the value of the url property. * * @return * possible object is * {@link Url } * */ public Url getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link Url } * */ public void setUrl(Url value) { this.url = 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 description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * 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 visibility property. * * @return * possible object is * {@link Boolean } * */ public Boolean isVisibility() { return visibility; } /** * Sets the value of the visibility property. * * @param value * allowed object is * {@link Boolean } * */ public void setVisibility(Boolean value) { this.visibility = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }