// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 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: 2011.01.27 at 08:53:01 PM MEZ // package de.openstreetmap.josm.tagging_preset_1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for root complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="root"> * <complexContent> * <extension base="{http://josm.openstreetmap.de/tagging-preset-1.0}group"> * <attribute name="author" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="shortdescription" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="link" type="{http://www.w3.org/2001/XMLSchema}string" /> * <anyAttribute processContents='skip'/> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "root") public class Root extends Group { @XmlAttribute protected String author; @XmlAttribute protected String version; @XmlAttribute protected String shortdescription; @XmlAttribute protected String description; @XmlAttribute protected String link; /** * Gets the value of the author property. * * @return possible object is {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the version property. * * @return possible object is {@link String } * */ public String getVersion() { 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 shortdescription property. * * @return possible object is {@link String } * */ public String getShortdescription() { return shortdescription; } /** * Sets the value of the shortdescription property. * * @param value * allowed object is {@link String } * */ public void setShortdescription(String value) { this.shortdescription = 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 link property. * * @return possible object is {@link String } * */ public String getLink() { return link; } /** * Sets the value of the link property. * * @param value * allowed object is {@link String } * */ public void setLink(String value) { this.link = value; } }