
edu.nps.moves.siso.jaxb.RevisionT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dis-enums Show documentation
Show all versions of dis-enums Show documentation
An open source implementation of the Distributed Interactive Simulation (DIS) IEEE-1278 protocol
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.03.13 at 10:34:00 PM PDT
//
package edu.nps.moves.siso.jaxb;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for revision_t complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="revision_t">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="title" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="date" type="{http://www.w3.org/2001/XMLSchema}date" />
* <attribute name="cr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
* <attribute name="cr2" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "revision_t")
public class RevisionT {
@XmlAttribute(required = true)
protected String title;
@XmlAttribute
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar date;
@XmlAttribute
@XmlSchemaType(name = "positiveInteger")
protected BigInteger cr;
@XmlAttribute
@XmlSchemaType(name = "positiveInteger")
protected BigInteger cr2;
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDate(XMLGregorianCalendar value) {
this.date = value;
}
/**
* Gets the value of the cr property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCr() {
return cr;
}
/**
* Sets the value of the cr property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCr(BigInteger value) {
this.cr = value;
}
/**
* Gets the value of the cr2 property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCr2() {
return cr2;
}
/**
* Sets the value of the cr2 property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCr2(BigInteger value) {
this.cr2 = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy