// // 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 java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for panelType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="panelType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="panel_number" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="panel_date_from" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="panel_date_to" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="invert" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="total_item_occurrences" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="item" type="{http://i2b2.mgh.harvard.edu/querytool}itemType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "panelType", propOrder = { "panelNumber", "panelDateFrom", "panelDateTo", "invert", "totalItemOccurrences", "item" }) public class PanelType { @XmlElement(name = "panel_number") protected int panelNumber; @XmlElement(name = "panel_date_from", required = true) protected XMLGregorianCalendar panelDateFrom; @XmlElement(name = "panel_date_to", required = true) protected XMLGregorianCalendar panelDateTo; protected int invert; @XmlElement(name = "total_item_occurrences") protected int totalItemOccurrences; @XmlElement(required = true) protected List<ItemType> item; /** * Gets the value of the panelNumber property. * */ public int getPanelNumber() { return panelNumber; } /** * Sets the value of the panelNumber property. * */ public void setPanelNumber(int value) { this.panelNumber = value; } /** * Gets the value of the panelDateFrom property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPanelDateFrom() { return panelDateFrom; } /** * Sets the value of the panelDateFrom property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPanelDateFrom(XMLGregorianCalendar value) { this.panelDateFrom = value; } /** * Gets the value of the panelDateTo property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPanelDateTo() { return panelDateTo; } /** * Sets the value of the panelDateTo property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPanelDateTo(XMLGregorianCalendar value) { this.panelDateTo = value; } /** * Gets the value of the invert property. * */ public int getInvert() { return invert; } /** * Sets the value of the invert property. * */ public void setInvert(int value) { this.invert = value; } /** * Gets the value of the totalItemOccurrences property. * */ public int getTotalItemOccurrences() { return totalItemOccurrences; } /** * Sets the value of the totalItemOccurrences property. * */ public void setTotalItemOccurrences(int value) { this.totalItemOccurrences = value; } /** * Gets the value of the item property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the item property. * * <p> * For example, to add a new item, do as follows: * <pre> * getItem().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ItemType } * * */ public List<ItemType> getItem() { if (item == null) { item = new ArrayList<ItemType>(); } return this.item; } }