// // 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_responseType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="patient_set_responseType"> * <complexContent> * <extension base="{http://i2b2.mgh.harvard.edu/querytool}responseType"> * <sequence> * <element name="patient_set" type="{http://i2b2.mgh.harvard.edu/querytool}patient_setType"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "patient_set_responseType", propOrder = { "patientSet" }) public class PatientSetResponseType extends ResponseType { @XmlElement(name = "patient_set", required = true) protected PatientSetType patientSet; /** * Gets the value of the patientSet property. * * @return * possible object is * {@link PatientSetType } * */ public PatientSetType getPatientSet() { return patientSet; } /** * Sets the value of the patientSet property. * * @param value * allowed object is * {@link PatientSetType } * */ public void setPatientSet(PatientSetType value) { this.patientSet = value; } }