// // 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> * <element ref="{}PMID"/> * <element ref="{}Article"/> * <element ref="{}MedlineJournalInfo"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pmid", "article", "medlineJournalInfo" }) @XmlRootElement(name = "NCBIArticle") public class NCBIArticle { @XmlElement(name = "PMID", required = true) protected PMID pmid; @XmlElement(name = "Article", required = true) protected Article article; @XmlElement(name = "MedlineJournalInfo", required = true) protected MedlineJournalInfo medlineJournalInfo; /** * Gets the value of the pmid property. * * @return * possible object is * {@link PMID } * */ public PMID getPMID() { return pmid; } /** * Sets the value of the pmid property. * * @param value * allowed object is * {@link PMID } * */ public void setPMID(PMID value) { this.pmid = value; } /** * Gets the value of the article property. * * @return * possible object is * {@link Article } * */ public Article getArticle() { return article; } /** * Sets the value of the article property. * * @param value * allowed object is * {@link Article } * */ public void setArticle(Article value) { this.article = value; } /** * Gets the value of the medlineJournalInfo property. * * @return * possible object is * {@link MedlineJournalInfo } * */ public MedlineJournalInfo getMedlineJournalInfo() { return medlineJournalInfo; } /** * Sets the value of the medlineJournalInfo property. * * @param value * allowed object is * {@link MedlineJournalInfo } * */ public void setMedlineJournalInfo(MedlineJournalInfo value) { this.medlineJournalInfo = value; } }