// // 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="{}GrantID" minOccurs="0"/> * <element ref="{}Acronym" minOccurs="0"/> * <element ref="{}Agency"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "grantID", "acronym", "agency" }) @XmlRootElement(name = "Grant") public class Grant { @XmlElement(name = "GrantID") protected GrantID grantID; @XmlElement(name = "Acronym") protected Acronym acronym; @XmlElement(name = "Agency", required = true) protected Agency agency; /** * Gets the value of the grantID property. * * @return * possible object is * {@link GrantID } * */ public GrantID getGrantID() { return grantID; } /** * Sets the value of the grantID property. * * @param value * allowed object is * {@link GrantID } * */ public void setGrantID(GrantID value) { this.grantID = value; } /** * Gets the value of the acronym property. * * @return * possible object is * {@link Acronym } * */ public Acronym getAcronym() { return acronym; } /** * Sets the value of the acronym property. * * @param value * allowed object is * {@link Acronym } * */ public void setAcronym(Acronym value) { this.acronym = value; } /** * Gets the value of the agency property. * * @return * possible object is * {@link Agency } * */ public Agency getAgency() { return agency; } /** * Sets the value of the agency property. * * @param value * allowed object is * {@link Agency } * */ public void setAgency(Agency value) { this.agency = value; } }