All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lumongo.example.medline.schema.Article Maven / Gradle / Ivy

There is a newer version: 0.52
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.02.21 at 02:09:06 PM EST 
//


package org.lumongo.example.medline.schema;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "journal",
    "articleTitle",
    "paginationOrELocationID",
    "_abstract",
    "affiliation",
    "authorList",
    "language",
    "dataBankList",
    "grantList",
    "publicationTypeList",
    "vernacularTitle",
    "articleDate"
})
@XmlRootElement(name = "Article")
public class Article {

    @XmlAttribute(name = "PubModel", required = true)
    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
    protected String pubModel;
    @XmlElement(name = "Journal", required = true)
    protected Journal journal;
    @XmlElement(name = "ArticleTitle", required = true)
    protected String articleTitle;
    @XmlElements({
        @XmlElement(name = "Pagination", required = true, type = Pagination.class),
        @XmlElement(name = "ELocationID", required = true, type = ELocationID.class)
    })
    protected List paginationOrELocationID;
    @XmlElement(name = "Abstract")
    protected Abstract _abstract;
    @XmlElement(name = "Affiliation")
    protected String affiliation;
    @XmlElement(name = "AuthorList")
    protected AuthorList authorList;
    @XmlElement(name = "Language", required = true)
    protected List language;
    @XmlElement(name = "DataBankList")
    protected DataBankList dataBankList;
    @XmlElement(name = "GrantList")
    protected GrantList grantList;
    @XmlElement(name = "PublicationTypeList", required = true)
    protected PublicationTypeList publicationTypeList;
    @XmlElement(name = "VernacularTitle")
    protected String vernacularTitle;
    @XmlElement(name = "ArticleDate")
    protected List articleDate;

    /**
     * Gets the value of the pubModel property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPubModel() {
        return pubModel;
    }

    /**
     * Sets the value of the pubModel property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPubModel(String value) {
        this.pubModel = value;
    }

    /**
     * Gets the value of the journal property.
     * 
     * @return
     *     possible object is
     *     {@link Journal }
     *     
     */
    public Journal getJournal() {
        return journal;
    }

    /**
     * Sets the value of the journal property.
     * 
     * @param value
     *     allowed object is
     *     {@link Journal }
     *     
     */
    public void setJournal(Journal value) {
        this.journal = value;
    }

    /**
     * Gets the value of the articleTitle property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getArticleTitle() {
        return articleTitle;
    }

    /**
     * Sets the value of the articleTitle property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setArticleTitle(String value) {
        this.articleTitle = value;
    }

    /**
     * Gets the value of the paginationOrELocationID property.
     * 
     * 

* 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 set method for the paginationOrELocationID property. * *

* For example, to add a new item, do as follows: *

     *    getPaginationOrELocationID().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Pagination } * {@link ELocationID } * * */ public List getPaginationOrELocationID() { if (paginationOrELocationID == null) { paginationOrELocationID = new ArrayList(); } return this.paginationOrELocationID; } /** * Gets the value of the abstract property. * * @return * possible object is * {@link Abstract } * */ public Abstract getAbstract() { return _abstract; } /** * Sets the value of the abstract property. * * @param value * allowed object is * {@link Abstract } * */ public void setAbstract(Abstract value) { this._abstract = value; } /** * Gets the value of the affiliation property. * * @return * possible object is * {@link String } * */ public String getAffiliation() { return affiliation; } /** * Sets the value of the affiliation property. * * @param value * allowed object is * {@link String } * */ public void setAffiliation(String value) { this.affiliation = value; } /** * Gets the value of the authorList property. * * @return * possible object is * {@link AuthorList } * */ public AuthorList getAuthorList() { return authorList; } /** * Sets the value of the authorList property. * * @param value * allowed object is * {@link AuthorList } * */ public void setAuthorList(AuthorList value) { this.authorList = value; } /** * Gets the value of the language property. * *

* 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 set method for the language property. * *

* For example, to add a new item, do as follows: *

     *    getLanguage().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Language } * * */ public List getLanguage() { if (language == null) { language = new ArrayList(); } return this.language; } /** * Gets the value of the dataBankList property. * * @return * possible object is * {@link DataBankList } * */ public DataBankList getDataBankList() { return dataBankList; } /** * Sets the value of the dataBankList property. * * @param value * allowed object is * {@link DataBankList } * */ public void setDataBankList(DataBankList value) { this.dataBankList = value; } /** * Gets the value of the grantList property. * * @return * possible object is * {@link GrantList } * */ public GrantList getGrantList() { return grantList; } /** * Sets the value of the grantList property. * * @param value * allowed object is * {@link GrantList } * */ public void setGrantList(GrantList value) { this.grantList = value; } /** * Gets the value of the publicationTypeList property. * * @return * possible object is * {@link PublicationTypeList } * */ public PublicationTypeList getPublicationTypeList() { return publicationTypeList; } /** * Sets the value of the publicationTypeList property. * * @param value * allowed object is * {@link PublicationTypeList } * */ public void setPublicationTypeList(PublicationTypeList value) { this.publicationTypeList = value; } /** * Gets the value of the vernacularTitle property. * * @return * possible object is * {@link String } * */ public String getVernacularTitle() { return vernacularTitle; } /** * Sets the value of the vernacularTitle property. * * @param value * allowed object is * {@link String } * */ public void setVernacularTitle(String value) { this.vernacularTitle = value; } /** * Gets the value of the articleDate property. * *

* 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 set method for the articleDate property. * *

* For example, to add a new item, do as follows: *

     *    getArticleDate().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ArticleDate } * * */ public List getArticleDate() { if (articleDate == null) { articleDate = new ArrayList(); } return this.articleDate; } }