
edu.nps.moves.siso.jaxb.GenerictableT 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for generictable_t complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="generictable_t">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
* <attribute name="cname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="source" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "generictable_t")
@XmlSeeAlso({
EnumT.class,
BitmaskT.class,
CetT.class,
CotT.class,
RecordT.class
})
public class GenerictableT {
@XmlAttribute(required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger id;
@XmlAttribute(required = true)
protected String cname;
@XmlAttribute(required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger length;
@XmlAttribute(required = true)
protected String name;
@XmlAttribute(required = true)
protected String source;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setId(BigInteger value) {
this.id = value;
}
/**
* Gets the value of the cname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCname() {
return cname;
}
/**
* Sets the value of the cname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCname(String value) {
this.cname = value;
}
/**
* Gets the value of the length property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getLength() {
return length;
}
/**
* Sets the value of the length property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setLength(BigInteger value) {
this.length = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSource(String value) {
this.source = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy