// // 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> * <sequence> * <element ref="{}RefSource"/> * <element ref="{}PMID" minOccurs="0"/> * <element ref="{}Note" minOccurs="0"/> * </sequence> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "refSource", "pmid", "note" }) @XmlRootElement(name = "ErratumIn") public class ErratumIn { @XmlElement(name = "RefSource", required = true) protected RefSource refSource; @XmlElement(name = "PMID") protected PMID pmid; @XmlElement(name = "Note") protected Note note; /** * Gets the value of the refSource property. * * @return * possible object is * {@link RefSource } * */ public RefSource getRefSource() { return refSource; } /** * Sets the value of the refSource property. * * @param value * allowed object is * {@link RefSource } * */ public void setRefSource(RefSource value) { this.refSource = value; } /** * Gets the value of the pmid property. * * @return * possible object is * {@link PMID } * */ public PMID getPMID() { return pmid; } /** * Sets the value of the pmid property. * * @param value * allowed object is * {@link PMID } * */ public void setPMID(PMID value) { this.pmid = value; } /** * Gets the value of the note property. * * @return * possible object is * {@link Note } * */ public Note getNote() { return note; } /** * Sets the value of the note property. * * @param value * allowed object is * {@link Note } * */ public void setNote(Note value) { this.note = value; } }