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; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name="PQR") public class PQR extends CV { @XmlAttribute(name="value") protected String value; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } }