// // 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="{}DataBankName"/> * <element ref="{}AccessionNumberList" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dataBankName", "accessionNumberList" }) @XmlRootElement(name = "DataBank") public class DataBank { @XmlElement(name = "DataBankName", required = true) protected DataBankName dataBankName; @XmlElement(name = "AccessionNumberList") protected AccessionNumberList accessionNumberList; /** * Gets the value of the dataBankName property. * * @return * possible object is * {@link DataBankName } * */ public DataBankName getDataBankName() { return dataBankName; } /** * Sets the value of the dataBankName property. * * @param value * allowed object is * {@link DataBankName } * */ public void setDataBankName(DataBankName value) { this.dataBankName = value; } /** * Gets the value of the accessionNumberList property. * * @return * possible object is * {@link AccessionNumberList } * */ public AccessionNumberList getAccessionNumberList() { return accessionNumberList; } /** * Sets the value of the accessionNumberList property. * * @param value * allowed object is * {@link AccessionNumberList } * */ public void setAccessionNumberList(AccessionNumberList value) { this.accessionNumberList = value; } }