riv.ehr.patientsummary._1.StrucDocList 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 StrucDoc.List complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StrucDoc.List">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}StrucDoc.Captioned">
* <sequence>
* <element name="item" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Item" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="listType" type="{urn:riv:ehr:patientsummary:1}StrucDoc.ListType" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StrucDoc.List")
public class StrucDocList
extends StrucDocCaptioned
{
@XmlAttribute(name = "listType")
protected StrucDocListType listType;
/**
* Gets the value of the listType property.
*
* @return
* possible object is
* {@link StrucDocListType }
*
*/
public StrucDocListType getListType() {
return listType;
}
/**
* Sets the value of the listType property.
*
* @param value
* allowed object is
* {@link StrucDocListType }
*
*/
public void setListType(StrucDocListType value) {
this.listType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy