// // 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="{}PubDate"/> * <element ref="{}Publisher"/> * <element ref="{}Title"/> * <element ref="{}AuthorList" minOccurs="0"/> * <element ref="{}CollectionTitle" minOccurs="0"/> * <element ref="{}Volume" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pubDate", "publisher", "title", "authorList", "collectionTitle", "volume" }) @XmlRootElement(name = "Book") public class Book { @XmlElement(name = "PubDate", required = true) protected PubDate pubDate; @XmlElement(name = "Publisher", required = true) protected Publisher publisher; @XmlElement(name = "Title", required = true) protected Title title; @XmlElement(name = "AuthorList") protected AuthorList authorList; @XmlElement(name = "CollectionTitle") protected CollectionTitle collectionTitle; @XmlElement(name = "Volume") protected Volume volume; /** * Gets the value of the pubDate property. * * @return * possible object is * {@link PubDate } * */ public PubDate getPubDate() { return pubDate; } /** * Sets the value of the pubDate property. * * @param value * allowed object is * {@link PubDate } * */ public void setPubDate(PubDate value) { this.pubDate = value; } /** * Gets the value of the publisher property. * * @return * possible object is * {@link Publisher } * */ public Publisher getPublisher() { return publisher; } /** * Sets the value of the publisher property. * * @param value * allowed object is * {@link Publisher } * */ public void setPublisher(Publisher value) { this.publisher = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link Title } * */ public Title getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link Title } * */ public void setTitle(Title value) { this.title = 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 collectionTitle property. * * @return * possible object is * {@link CollectionTitle } * */ public CollectionTitle getCollectionTitle() { return collectionTitle; } /** * Sets the value of the collectionTitle property. * * @param value * allowed object is * {@link CollectionTitle } * */ public void setCollectionTitle(CollectionTitle value) { this.collectionTitle = value; } /** * Gets the value of the volume property. * * @return * possible object is * {@link Volume } * */ public Volume getVolume() { return volume; } /** * Sets the value of the volume property. * * @param value * allowed object is * {@link Volume } * */ public void setVolume(Volume value) { this.volume = value; } }