org.nmdp.ngs.sra.jaxb.study.StudySet Maven / Gradle / Ivy
//
// 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.01.21 at 09:06:41 PM CST
//
package org.nmdp.ngs.sra.jaxb.study;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StudySetType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StudySetType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence maxOccurs="unbounded">
* <element name="STUDY" type="{}StudyType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StudySetType", namespace = "", propOrder = {
"studies"
})
@XmlRootElement(name = "STUDY_SET", namespace = "")
public class StudySet {
@XmlElement(name = "STUDY", required = true)
protected List studies;
/**
* Gets the value of the studies 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 studies property.
*
*
* For example, to add a new item, do as follows:
*
* getStudies().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Study }
*
*
*/
public List getStudies() {
if (studies == null) {
studies = new ArrayList();
}
return this.studies;
}
}