package org.hl7.v3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * * A representation of a physical quantity in a unit from any code system. Used to show alternative * representation for a physical quantity. * * * <p> * Java class for PQR complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PQR"> * <complexContent> * <extension base="{urn:hl7-org:v3}CV"> * <attribute name="value" type="{urn:hl7-org:v3}fractionalnumber" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PQR") public class PQR extends CV { /** * */ private static final long serialVersionUID = 1L; @XmlAttribute protected String value; /** * Gets the value of the value property. * * @return possible object is {@link String } * */ public String getValue(){ return value; } /** * Sets the value of the value property. * * @param value * allowed object is {@link String } * */ public void setValue(String value){ this.value = value; } }