org.lumongo.example.medline.schema.Chemical Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.02.21 at 02:09:06 PM EST
//
package org.lumongo.example.medline.schema;
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;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"registryNumber",
"nameOfSubstance"
})
@XmlRootElement(name = "Chemical")
public class Chemical {
@XmlElement(name = "RegistryNumber", required = true)
protected String registryNumber;
@XmlElement(name = "NameOfSubstance", required = true)
protected String nameOfSubstance;
/**
* Gets the value of the registryNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegistryNumber() {
return registryNumber;
}
/**
* Sets the value of the registryNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegistryNumber(String value) {
this.registryNumber = value;
}
/**
* Gets the value of the nameOfSubstance property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameOfSubstance() {
return nameOfSubstance;
}
/**
* Sets the value of the nameOfSubstance property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameOfSubstance(String value) {
this.nameOfSubstance = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy