// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 // 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: 2013.09.14 at 01:52:08 PM MESZ // package org.osmtools.osc; 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 tag complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tag"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="k" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="v" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tag") public class Tag { @XmlAttribute(name = "k", required = true) protected String k; @XmlAttribute(name = "v", required = true) protected String v; /** * Gets the value of the k property. * * @return * possible object is * {@link String } * */ public String getK() { return k; } /** * Sets the value of the k property. * * @param value * allowed object is * {@link String } * */ public void setK(String value) { this.k = value; } /** * Gets the value of the v property. * * @return * possible object is * {@link String } * */ public String getV() { return v; } /** * Sets the value of the v property. * * @param value * allowed object is * {@link String } * */ public void setV(String value) { this.v = value; } }