riv.ehr.patientsummary._1.CS Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CS complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CS">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ANY">
* <attribute name="code" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CS")
public class CS
extends ANY
{
@XmlAttribute(name = "code")
protected String code;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy