// // 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: 2008.10.12 at 02:39:09 PM CEST // package slash.navigation.kml.binding22beta; 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 LinkType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LinkType"> * <complexContent> * <extension base="{http://earth.google.com/kml/2.2}BasicLinkType"> * <sequence> * <element ref="{http://earth.google.com/kml/2.2}refreshMode" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}refreshInterval" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}viewRefreshMode" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}viewRefreshTime" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}viewBoundScale" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}viewFormat" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}httpQuery" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LinkType", propOrder = { "refreshMode", "refreshInterval", "viewRefreshMode", "viewRefreshTime", "viewBoundScale", "viewFormat", "httpQuery" }) public class LinkType extends BasicLinkType { @XmlElement(defaultValue = "onChange") protected RefreshModeEnumType refreshMode; @XmlElement(defaultValue = "4.0") protected Double refreshInterval; @XmlElement(defaultValue = "never") protected ViewRefreshModeEnumType viewRefreshMode; @XmlElement(defaultValue = "4.0") protected Double viewRefreshTime; @XmlElement(defaultValue = "1.0") protected Double viewBoundScale; protected String viewFormat; protected String httpQuery; /** * Gets the value of the refreshMode property. * * @return * possible object is * {@link RefreshModeEnumType } * */ public RefreshModeEnumType getRefreshMode() { return refreshMode; } /** * Sets the value of the refreshMode property. * * @param value * allowed object is * {@link RefreshModeEnumType } * */ public void setRefreshMode(RefreshModeEnumType value) { this.refreshMode = value; } /** * Gets the value of the refreshInterval property. * * @return * possible object is * {@link Double } * */ public Double getRefreshInterval() { return refreshInterval; } /** * Sets the value of the refreshInterval property. * * @param value * allowed object is * {@link Double } * */ public void setRefreshInterval(Double value) { this.refreshInterval = value; } /** * Gets the value of the viewRefreshMode property. * * @return * possible object is * {@link ViewRefreshModeEnumType } * */ public ViewRefreshModeEnumType getViewRefreshMode() { return viewRefreshMode; } /** * Sets the value of the viewRefreshMode property. * * @param value * allowed object is * {@link ViewRefreshModeEnumType } * */ public void setViewRefreshMode(ViewRefreshModeEnumType value) { this.viewRefreshMode = value; } /** * Gets the value of the viewRefreshTime property. * * @return * possible object is * {@link Double } * */ public Double getViewRefreshTime() { return viewRefreshTime; } /** * Sets the value of the viewRefreshTime property. * * @param value * allowed object is * {@link Double } * */ public void setViewRefreshTime(Double value) { this.viewRefreshTime = value; } /** * Gets the value of the viewBoundScale property. * * @return * possible object is * {@link Double } * */ public Double getViewBoundScale() { return viewBoundScale; } /** * Sets the value of the viewBoundScale property. * * @param value * allowed object is * {@link Double } * */ public void setViewBoundScale(Double value) { this.viewBoundScale = value; } /** * Gets the value of the viewFormat property. * * @return * possible object is * {@link String } * */ public String getViewFormat() { return viewFormat; } /** * Sets the value of the viewFormat property. * * @param value * allowed object is * {@link String } * */ public void setViewFormat(String value) { this.viewFormat = value; } /** * Gets the value of the httpQuery property. * * @return * possible object is * {@link String } * */ public String getHttpQuery() { return httpQuery; } /** * Sets the value of the httpQuery property. * * @param value * allowed object is * {@link String } * */ public void setHttpQuery(String value) { this.httpQuery = value; } }