
edu.nps.moves.siso.jaxb.GenericentryT 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for genericentry_t complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="genericentry_t">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="footnote" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="xref" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="deleted" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="unused" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "genericentry_t")
@XmlSeeAlso({
SubcategoryT.class,
ExtraT.class,
EnumrowT.class,
BitmaskrowT.class,
SpecificT.class,
CategoryT.class
})
public class GenericentryT {
@XmlAttribute
protected String description;
@XmlAttribute
protected String footnote;
@XmlAttribute
protected String xref;
@XmlAttribute
protected Boolean deleted;
@XmlAttribute
protected Boolean unused;
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the footnote property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFootnote() {
return footnote;
}
/**
* Sets the value of the footnote property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFootnote(String value) {
this.footnote = value;
}
/**
* Gets the value of the xref property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXref() {
return xref;
}
/**
* Sets the value of the xref property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXref(String value) {
this.xref = value;
}
/**
* Gets the value of the deleted property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDeleted() {
return deleted;
}
/**
* Sets the value of the deleted property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDeleted(Boolean value) {
this.deleted = value;
}
/**
* Gets the value of the unused property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUnused() {
return unused;
}
/**
* Sets the value of the unused property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUnused(Boolean value) {
this.unused = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy