// // 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="{}RegistryNumber"/> * <element ref="{}NameOfSubstance"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "registryNumber", "nameOfSubstance" }) @XmlRootElement(name = "Chemical") public class Chemical { @XmlElement(name = "RegistryNumber", required = true) protected RegistryNumber registryNumber; @XmlElement(name = "NameOfSubstance", required = true) protected NameOfSubstance nameOfSubstance; /** * Gets the value of the registryNumber property. * * @return * possible object is * {@link RegistryNumber } * */ public RegistryNumber getRegistryNumber() { return registryNumber; } /** * Sets the value of the registryNumber property. * * @param value * allowed object is * {@link RegistryNumber } * */ public void setRegistryNumber(RegistryNumber value) { this.registryNumber = value; } /** * Gets the value of the nameOfSubstance property. * * @return * possible object is * {@link NameOfSubstance } * */ public NameOfSubstance getNameOfSubstance() { return nameOfSubstance; } /** * Sets the value of the nameOfSubstance property. * * @param value * allowed object is * {@link NameOfSubstance } * */ public void setNameOfSubstance(NameOfSubstance value) { this.nameOfSubstance = value; } }