
edu.nps.moves.siso.jaxb.EnumrowT 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.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.XmlType;
/**
* Java class for enumrow_t complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="enumrow_t">
* <complexContent>
* <extension base="{}genericentry_t">
* <sequence>
* <element name="meta" type="{}meta_t" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="id2" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "enumrow_t", propOrder = {
"meta"
})
public class EnumrowT
extends GenericentryT
{
protected List meta;
@XmlAttribute(required = true)
protected int id;
@XmlAttribute
protected Integer id2;
/**
* Gets the value of the meta 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 meta property.
*
*
* For example, to add a new item, do as follows:
*
* getMeta().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MetaT }
*
*
*/
public List getMeta() {
if (meta == null) {
meta = new ArrayList();
}
return this.meta;
}
/**
* Gets the value of the id property.
*
*/
public int getId() {
return id;
}
/**
* Sets the value of the id property.
*
*/
public void setId(int value) {
this.id = value;
}
/**
* Gets the value of the id2 property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getId2() {
return id2;
}
/**
* Sets the value of the id2 property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setId2(Integer value) {
this.id2 = value;
}
}