/******************************************************************************* * Copyright (c) MOBAC developers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 // 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.08.04 at 03:45:03 PM MESZ // package mobac.data.gpx.gpx11; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import mobac.program.ProgramInfo; /** * * GPX documents contain a metadata header, followed by waypoints, routes, and * tracks. You can add your own elements to the extensions section of the GPX * document. * * * <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"> * <sequence> * <element name="metadata" type="{http://www.topografix.com/GPX/1/1}metadataType" minOccurs="0"/> * <element name="wpt" type="{http://www.topografix.com/GPX/1/1}wptType" maxOccurs="unbounded" minOccurs="0"/> * <element name="rte" type="{http://www.topografix.com/GPX/1/1}rteType" maxOccurs="unbounded" minOccurs="0"/> * <element name="trk" type="{http://www.topografix.com/GPX/1/1}trkType" maxOccurs="unbounded" minOccurs="0"/> * <element name="extensions" type="{http://www.topografix.com/GPX/1/1}extensionsType" minOccurs="0"/> * </sequence> * <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="1.1" /> * <attribute name="creator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "metadata", "wpt", "rte", "trk", "extensions" }) @XmlRootElement(name = "gpx") public class Gpx { protected MetadataType metadata; protected List<WptType> wpt; protected List<RteType> rte; protected List<TrkType> trk; protected ExtensionsType extensions; @XmlAttribute(required = true) protected String version; @XmlAttribute(required = true) protected String creator; public static Gpx createGpx() { Gpx gpx = new Gpx(); gpx.setVersion("1.1"); gpx.setCreator(ProgramInfo.getVersionTitle()); return gpx; } protected Gpx() { } /** * Gets the value of the metadata property. * * @return possible object is {@link MetadataType } * */ public MetadataType getMetadata() { return metadata; } /** * Sets the value of the metadata property. * * @param value * allowed object is {@link MetadataType } * */ public void setMetadata(MetadataType value) { this.metadata = value; } /** * Gets the value of the wpt property. * * <p> * This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list will * be present inside the JAXB object. This is why there is not a * <CODE>set</CODE> method for the wpt property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getWpt().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link WptType } * * */ public List<WptType> getWpt() { if (wpt == null) { wpt = new ArrayList<WptType>(); } return this.wpt; } /** * Gets the value of the rte property. * * <p> * This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list will * be present inside the JAXB object. This is why there is not a * <CODE>set</CODE> method for the rte property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getRte().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link RteType } * * */ public List<RteType> getRte() { if (rte == null) { rte = new ArrayList<RteType>(); } return this.rte; } /** * Gets the value of the trk property. * * <p> * This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list will * be present inside the JAXB object. This is why there is not a * <CODE>set</CODE> method for the trk property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getTrk().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link TrkType } * * */ public List<TrkType> getTrk() { if (trk == null) { trk = new ArrayList<TrkType>(); } return this.trk; } /** * Gets the value of the extensions property. * * @return possible object is {@link ExtensionsType } * */ public ExtensionsType getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is {@link ExtensionsType } * */ public void setExtensions(ExtensionsType value) { this.extensions = value; } /** * Gets the value of the version property. * * @return possible object is {@link String } * */ public String getVersion() { if (version == null) { return "1.1"; } else { return version; } } /** * Sets the value of the version property. * * @param value * allowed object is {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the creator property. * * @return possible object is {@link String } * */ public String getCreator() { return creator; } /** * Sets the value of the creator property. * * @param value * allowed object is {@link String } * */ public void setCreator(String value) { this.creator = value; } }