// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.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: 2009.06.03 at 01:03:34 AM EDT // package org.mindinformatics.services.connector.pubmed.fetch; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <sequence> * <element ref="{}Year"/> * <choice minOccurs="0"> * <sequence> * <element ref="{}Month"/> * <element ref="{}Day" minOccurs="0"/> * </sequence> * <element ref="{}Season"/> * </choice> * </sequence> * <element ref="{}MedlineDate"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "year", "month", "day", "season", "medlineDate" }) @XmlRootElement(name = "PubDate") public class PubDate { @XmlElement(name = "Year") protected Year year; @XmlElement(name = "Month") protected Month month; @XmlElement(name = "Day") protected Day day; @XmlElement(name = "Season") protected Season season; @XmlElement(name = "MedlineDate") protected MedlineDate medlineDate; /** * Gets the value of the year property. * * @return * possible object is * {@link Year } * */ public Year getYear() { return year; } /** * Sets the value of the year property. * * @param value * allowed object is * {@link Year } * */ public void setYear(Year value) { this.year = value; } /** * Gets the value of the month property. * * @return * possible object is * {@link Month } * */ public Month getMonth() { return month; } /** * Sets the value of the month property. * * @param value * allowed object is * {@link Month } * */ public void setMonth(Month value) { this.month = value; } /** * Gets the value of the day property. * * @return * possible object is * {@link Day } * */ public Day getDay() { return day; } /** * Sets the value of the day property. * * @param value * allowed object is * {@link Day } * */ public void setDay(Day value) { this.day = value; } /** * Gets the value of the season property. * * @return * possible object is * {@link Season } * */ public Season getSeason() { return season; } /** * Sets the value of the season property. * * @param value * allowed object is * {@link Season } * */ public void setSeason(Season value) { this.season = value; } /** * Gets the value of the medlineDate property. * * @return * possible object is * {@link MedlineDate } * */ public MedlineDate getMedlineDate() { return medlineDate; } /** * Sets the value of the medlineDate property. * * @param value * allowed object is * {@link MedlineDate } * */ public void setMedlineDate(MedlineDate value) { this.medlineDate = value; } }