org.immregistries.codebase.client.generated.UseAge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebase-client Show documentation
Show all versions of codebase-client Show documentation
Reads the Codebase XML and provides helper classes to use it.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.11.29 at 11:28:47 PM EST
//
package org.immregistries.codebase.client.generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="not-before-month" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="not-after-month" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"notBeforeMonth",
"notAfterMonth"
})
public class UseAge {
@XmlElement(name = "not-before-month")
protected int notBeforeMonth;
@XmlElement(name = "not-after-month")
protected int notAfterMonth;
/**
* Gets the value of the notBeforeMonth property.
*
*/
public int getNotBeforeMonth() {
return notBeforeMonth;
}
/**
* Sets the value of the notBeforeMonth property.
*
*/
public void setNotBeforeMonth(int value) {
this.notBeforeMonth = value;
}
/**
* Gets the value of the notAfterMonth property.
*
*/
public int getNotAfterMonth() {
return notAfterMonth;
}
/**
* Sets the value of the notAfterMonth property.
*
*/
public void setNotAfterMonth(int value) {
this.notAfterMonth = value;
}
}