org.lumongo.example.medline.schema.DateCompleted 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 = {
"year",
"month",
"day"
})
@XmlRootElement(name = "DateCompleted")
public class DateCompleted {
@XmlElement(name = "Year", required = true)
protected Year year;
@XmlElement(name = "Month", required = true)
protected Month month;
@XmlElement(name = "Day", required = true)
protected Day day;
/**
* Gets the value of the year property.
*
* @return
* possible object is
* {@link Year }
*
*/
public Year getYear() {
return year;
}
/**
* Sets the value of the year property.
*
* @param value
* allowed object is
* {@link Year }
*
*/
public void setYear(Year value) {
this.year = value;
}
/**
* Gets the value of the month property.
*
* @return
* possible object is
* {@link Month }
*
*/
public Month getMonth() {
return month;
}
/**
* Sets the value of the month property.
*
* @param value
* allowed object is
* {@link Month }
*
*/
public void setMonth(Month value) {
this.month = value;
}
/**
* Gets the value of the day property.
*
* @return
* possible object is
* {@link Day }
*
*/
public Day getDay() {
return day;
}
/**
* Sets the value of the day property.
*
* @param value
* allowed object is
* {@link Day }
*
*/
public void setDay(Day value) {
this.day = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy