// // 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 xml_resultType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="xml_resultType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="xml_result_id" type="{http://i2b2.mgh.harvard.edu/querytool}xml_result_idType"/> * <element name="result_instance_id" type="{http://i2b2.mgh.harvard.edu/querytool}result_instance_idType"/> * <element name="xml_value" type="{http://i2b2.mgh.harvard.edu/querytool}xml_valueType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "xml_resultType", propOrder = { "xmlResultId", "resultInstanceId", "xmlValue" }) public class XmlResultType { @XmlElement(name = "xml_result_id") protected int xmlResultId; @XmlElement(name = "result_instance_id") protected int resultInstanceId; @XmlElement(name = "xml_value", required = true) protected XmlValueType xmlValue; /** * Gets the value of the xmlResultId property. * */ public int getXmlResultId() { return xmlResultId; } /** * Sets the value of the xmlResultId property. * */ public void setXmlResultId(int value) { this.xmlResultId = 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 xmlValue property. * * @return * possible object is * {@link XmlValueType } * */ public XmlValueType getXmlValue() { return xmlValue; } /** * Sets the value of the xmlValue property. * * @param value * allowed object is * {@link XmlValueType } * */ public void setXmlValue(XmlValueType value) { this.xmlValue = value; } }