All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.nps.moves.siso.jaxb.BitmaskrowT Maven / Gradle / Ivy

Go to download

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 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 bitmaskrow_t complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="bitmaskrow_t">
 *   <complexContent>
 *     <extension base="{}genericentry_t">
 *       <sequence>
 *         <element name="enumrow" type="{}enumrow_t" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *       <attribute name="id2" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "bitmaskrow_t", propOrder = { "enumrow" }) public class BitmaskrowT extends GenericentryT { protected List enumrow; @XmlAttribute(required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger id; @XmlAttribute @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger id2; @XmlAttribute protected String name; /** * Gets the value of the enumrow 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 enumrow property. * *

* For example, to add a new item, do as follows: *

     *    getEnumrow().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link EnumrowT } * * */ public List getEnumrow() { if (enumrow == null) { enumrow = new ArrayList(); } return this.enumrow; } /** * 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 id2 property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId2() { return id2; } /** * Sets the value of the id2 property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId2(BigInteger value) { this.id2 = 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy