
edu.nps.moves.siso.jaxb.EntityT Maven / Gradle / Ivy
Show all versions of dis-enums Show documentation
//
// 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 java.util.ArrayList;
import java.util.List;
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;
/**
* Java class for entity_t complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="entity_t">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="category" type="{}category_t" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="kind" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* <attribute name="domain" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* <attribute name="country" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="unused" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="footnote" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="xref" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "entity_t", propOrder = {
"category"
})
public class EntityT {
protected List category;
@XmlAttribute(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger kind;
@XmlAttribute(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger domain;
@XmlAttribute(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger country;
@XmlAttribute
protected String description;
@XmlAttribute
protected Boolean unused;
@XmlAttribute
protected String footnote;
@XmlAttribute
protected String xref;
/**
* Gets the value of the category property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the category property.
*
*
* For example, to add a new item, do as follows:
*
* getCategory().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CategoryT }
*
*
*/
public List getCategory() {
if (category == null) {
category = new ArrayList();
}
return this.category;
}
/**
* Gets the value of the kind property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getKind() {
return kind;
}
/**
* Sets the value of the kind property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setKind(BigInteger value) {
this.kind = value;
}
/**
* Gets the value of the domain property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getDomain() {
return domain;
}
/**
* Sets the value of the domain property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setDomain(BigInteger value) {
this.domain = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCountry(BigInteger value) {
this.country = value;
}
/**
* 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 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;
}
/**
* 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;
}
}