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

org.omg.space.xtce.CmdContArrayArgumentRefEntryType Maven / Gradle / Ivy

Go to download

This project contains software to support the Object Management Group (OMG) Space Domain Task Force (SDTF) maintained XML Telemetry and Command Exchange (XTCE) specification.

There is a newer version: 1.1.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.03.16 at 05:52:46 PM MST 
//


package org.omg.space.xtce;

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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * An entry that is an array argument.  This entry is somewhat special because the entry may represent only a part of the Array and it's important to describe which dimensions of the array come first in the sequence as well as the size of the array.
 * 
 * 

Java class for CmdContArrayArgumentRefEntryType complex type. * *

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

 * <complexType name="CmdContArrayArgumentRefEntryType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}SequenceEntryType">
 *       <sequence>
 *         <element name="DimensionList">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <choice>
 *                   <element name="Size" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
 *                   <element name="Dimension" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="StartingIndex" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
 *                             <element name="EndingIndex" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </choice>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="argumentRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
 *       <attribute name="lastEntryForThisArrayInstance" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CmdContArrayArgumentRefEntryType", propOrder = { "dimensionList" }) public class CmdContArrayArgumentRefEntryType extends SequenceEntryType { @XmlElement(name = "DimensionList", required = true) protected CmdContArrayArgumentRefEntryType.DimensionList dimensionList; @XmlAttribute(name = "argumentRef", required = true) protected String argumentRef; @XmlAttribute(name = "lastEntryForThisArrayInstance") protected Boolean lastEntryForThisArrayInstance; /** * Gets the value of the dimensionList property. * * @return * possible object is * {@link CmdContArrayArgumentRefEntryType.DimensionList } * */ public CmdContArrayArgumentRefEntryType.DimensionList getDimensionList() { return dimensionList; } /** * Sets the value of the dimensionList property. * * @param value * allowed object is * {@link CmdContArrayArgumentRefEntryType.DimensionList } * */ public void setDimensionList(CmdContArrayArgumentRefEntryType.DimensionList value) { this.dimensionList = value; } /** * Gets the value of the argumentRef property. * * @return * possible object is * {@link String } * */ public String getArgumentRef() { return argumentRef; } /** * Sets the value of the argumentRef property. * * @param value * allowed object is * {@link String } * */ public void setArgumentRef(String value) { this.argumentRef = value; } /** * Gets the value of the lastEntryForThisArrayInstance property. * * @return * possible object is * {@link Boolean } * */ public boolean isLastEntryForThisArrayInstance() { if (lastEntryForThisArrayInstance == null) { return false; } else { return lastEntryForThisArrayInstance; } } /** * Sets the value of the lastEntryForThisArrayInstance property. * * @param value * allowed object is * {@link Boolean } * */ public void setLastEntryForThisArrayInstance(Boolean value) { this.lastEntryForThisArrayInstance = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <choice>
     *         <element name="Size" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
     *         <element name="Dimension" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="StartingIndex" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
     *                   <element name="EndingIndex" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </choice>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "size", "dimension" }) public static class DimensionList { @XmlElement(name = "Size") protected IntegerArgumentValueType size; @XmlElement(name = "Dimension") protected List dimension; /** * Gets the value of the size property. * * @return * possible object is * {@link IntegerArgumentValueType } * */ public IntegerArgumentValueType getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link IntegerArgumentValueType } * */ public void setSize(IntegerArgumentValueType value) { this.size = value; } /** * Gets the value of the dimension 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 dimension property. * *

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

         *    getDimension().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CmdContArrayArgumentRefEntryType.DimensionList.Dimension } * * */ public List getDimension() { if (dimension == null) { dimension = new ArrayList(); } return this.dimension; } /** *

Java class for anonymous complex type. * *

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

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="StartingIndex" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
         *         <element name="EndingIndex" type="{http://www.omg.org/space/xtce}IntegerArgumentValueType"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "startingIndex", "endingIndex" }) public static class Dimension { @XmlElement(name = "StartingIndex", required = true) protected IntegerArgumentValueType startingIndex; @XmlElement(name = "EndingIndex", required = true) protected IntegerArgumentValueType endingIndex; /** * Gets the value of the startingIndex property. * * @return * possible object is * {@link IntegerArgumentValueType } * */ public IntegerArgumentValueType getStartingIndex() { return startingIndex; } /** * Sets the value of the startingIndex property. * * @param value * allowed object is * {@link IntegerArgumentValueType } * */ public void setStartingIndex(IntegerArgumentValueType value) { this.startingIndex = value; } /** * Gets the value of the endingIndex property. * * @return * possible object is * {@link IntegerArgumentValueType } * */ public IntegerArgumentValueType getEndingIndex() { return endingIndex; } /** * Sets the value of the endingIndex property. * * @param value * allowed object is * {@link IntegerArgumentValueType } * */ public void setEndingIndex(IntegerArgumentValueType value) { this.endingIndex = value; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy