// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2006.10.27 at 11:21:39 AM EDT // package jaxb; 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 patient_set_collectionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="patient_set_collectionType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="patient_set_coll_id" type="{http://i2b2.mgh.harvard.edu/querytool}patient_set_coll_idType"/> * <element name="result_instance_id" type="{http://i2b2.mgh.harvard.edu/querytool}result_instance_idType"/> * <element name="set_index" type="{http://i2b2.mgh.harvard.edu/querytool}set_indexType"/> * <element name="patient_num" type="{http://i2b2.mgh.harvard.edu/querytool}patient_numType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "patient_set_collectionType", propOrder = { "patientSetCollId", "resultInstanceId", "setIndex", "patientNum" }) public class PatientSetCollectionType { @XmlElement(name = "patient_set_coll_id") protected int patientSetCollId; @XmlElement(name = "result_instance_id") protected int resultInstanceId; @XmlElement(name = "set_index") protected int setIndex; @XmlElement(name = "patient_num") protected int patientNum; /** * Gets the value of the patientSetCollId property. * */ public int getPatientSetCollId() { return patientSetCollId; } /** * Sets the value of the patientSetCollId property. * */ public void setPatientSetCollId(int value) { this.patientSetCollId = value; } /** * Gets the value of the resultInstanceId property. * */ public int getResultInstanceId() { return resultInstanceId; } /** * Sets the value of the resultInstanceId property. * */ public void setResultInstanceId(int value) { this.resultInstanceId = value; } /** * Gets the value of the setIndex property. * */ public int getSetIndex() { return setIndex; } /** * Sets the value of the setIndex property. * */ public void setSetIndex(int value) { this.setIndex = value; } /** * Gets the value of the patientNum property. * */ public int getPatientNum() { return patientNum; } /** * Sets the value of the patientNum property. * */ public void setPatientNum(int value) { this.patientNum = value; } }