package ihe.qrph.dex._2013; 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 ValueDomainType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ValueDomainType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="dataType" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="unitOfMeasure" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="valueSet" type="{urn:ihe:qrph:dex:2013}ValueSetType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ValueDomainType", propOrder = { "dataType", "unitOfMeasure", "valueSet" }) public class ValueDomainType { @XmlElement(required = true) protected String dataType; protected String unitOfMeasure; protected ValueSetType valueSet; /** * Gets the value of the dataType property. * * @return * possible object is * {@link String } * */ public String getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link String } * */ public void setDataType(String value) { this.dataType = value; } /** * Gets the value of the unitOfMeasure property. * * @return * possible object is * {@link String } * */ public String getUnitOfMeasure() { return unitOfMeasure; } /** * Sets the value of the unitOfMeasure property. * * @param value * allowed object is * {@link String } * */ public void setUnitOfMeasure(String value) { this.unitOfMeasure = value; } /** * Gets the value of the valueSet property. * * @return * possible object is * {@link ValueSetType } * */ public ValueSetType getValueSet() { return valueSet; } /** * Sets the value of the valueSet property. * * @param value * allowed object is * {@link ValueSetType } * */ public void setValueSet(ValueSetType value) { this.valueSet = value; } }