// // 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> * <element ref="{}NCBIArticle"/> * <element ref="{}MedlineCitation"/> * </choice> * <element ref="{}PubmedData" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ncbiArticle", "medlineCitation", "pubmedData" }) @XmlRootElement(name = "PubmedArticle") public class PubmedArticle { @XmlElement(name = "NCBIArticle") protected NCBIArticle ncbiArticle; @XmlElement(name = "MedlineCitation") protected MedlineCitation medlineCitation; @XmlElement(name = "PubmedData") protected PubmedData pubmedData; /** * Gets the value of the ncbiArticle property. * * @return * possible object is * {@link NCBIArticle } * */ public NCBIArticle getNCBIArticle() { return ncbiArticle; } /** * Sets the value of the ncbiArticle property. * * @param value * allowed object is * {@link NCBIArticle } * */ public void setNCBIArticle(NCBIArticle value) { this.ncbiArticle = value; } /** * Gets the value of the medlineCitation property. * * @return * possible object is * {@link MedlineCitation } * */ public MedlineCitation getMedlineCitation() { return medlineCitation; } /** * Sets the value of the medlineCitation property. * * @param value * allowed object is * {@link MedlineCitation } * */ public void setMedlineCitation(MedlineCitation value) { this.medlineCitation = value; } /** * Gets the value of the pubmedData property. * * @return * possible object is * {@link PubmedData } * */ public PubmedData getPubmedData() { return pubmedData; } /** * Sets the value of the pubmedData property. * * @param value * allowed object is * {@link PubmedData } * */ public void setPubmedData(PubmedData value) { this.pubmedData = value; } }