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

org.nmdp.ngs.gtr.jaxb.TextCitations Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.05.15 at 04:23:26 PM CDT 
//


package org.nmdp.ngs.gtr.jaxb;

import java.math.BigInteger;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TextCitations complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TextCitations">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="PMID" type="{http://www.w3.org/2001/XMLSchema}integer" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="URL" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="CitationText" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TextCitations", propOrder = { "description", "pmids", "urls", "citationTexts" }) @XmlSeeAlso({ org.nmdp.ngs.gtr.jaxb.MeasureTraitType.ClinicalSignificance.class }) public class TextCitations { @XmlElement(name = "Description", required = true) protected String description; @XmlElement(name = "PMID") protected List pmids; @XmlElement(name = "URL") @XmlSchemaType(name = "anyURI") protected List urls; @XmlElement(name = "CitationText") protected List citationTexts; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the pmids 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 pmids property. * *

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

     *    getPMIDS().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BigInteger } * * */ public List getPMIDS() { if (pmids == null) { pmids = new ArrayList(); } return this.pmids; } /** * Gets the value of the urls 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 urls property. * *

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

     *    getURLS().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getURLS() { if (urls == null) { urls = new ArrayList(); } return this.urls; } /** * Gets the value of the citationTexts 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 citationTexts property. * *

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

     *    getCitationTexts().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy