// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.08.04 at 11:30:52 PM CEST // package eu.prestoprime.model.datatypes; import java.io.Serializable; 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 ref complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="ref"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="mdtype" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="othermdtype" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ref", propOrder = { "label", "mdtype", "othermdtype" }) public class Ref implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String label; @XmlElement(required = true) protected String mdtype; @XmlElement(required = true) protected String othermdtype; /** * Gets the value of the label property. * * @return possible object is {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the mdtype property. * * @return possible object is {@link String } * */ public String getMdtype() { return mdtype; } /** * Sets the value of the mdtype property. * * @param value * allowed object is {@link String } * */ public void setMdtype(String value) { this.mdtype = value; } /** * Gets the value of the othermdtype property. * * @return possible object is {@link String } * */ public String getOthermdtype() { return othermdtype; } /** * Sets the value of the othermdtype property. * * @param value * allowed object is {@link String } * */ public void setOthermdtype(String value) { this.othermdtype = value; } }