// // 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 query_status_typeType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="query_status_typeType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="status_type_id" type="{http://i2b2.mgh.harvard.edu/querytool}status_type_idType"/> * <element name="name" type="{http://i2b2.mgh.harvard.edu/querytool}nameType" minOccurs="0"/> * <element name="description" type="{http://i2b2.mgh.harvard.edu/querytool}descriptionType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "query_status_typeType", propOrder = { "statusTypeId", "name", "description" }) public class QueryStatusTypeType { @XmlElement(name = "status_type_id") protected int statusTypeId; protected String name; protected String description; /** * Gets the value of the statusTypeId property. * */ public int getStatusTypeId() { return statusTypeId; } /** * Sets the value of the statusTypeId property. * */ public void setStatusTypeId(int value) { this.statusTypeId = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }