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

org.omg.space.xtce.ParameterSetType 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.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * Used by both the TelemetryMetaData and the CommandMetaData components each may be built independently.
 * 
 * 

Java class for ParameterSetType complex type. * *

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

 * <complexType name="ParameterSetType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded">
 *         <element name="Parameter">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.omg.org/space/xtce}NameDescriptionType">
 *                 <sequence>
 *                   <element name="ParameterProperties" type="{http://www.omg.org/space/xtce}ParameterPropertiesType" minOccurs="0"/>
 *                 </sequence>
 *                 <attribute name="parameterTypeRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
 *                 <attribute name="initialValue" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="ParameterRef" type="{http://www.omg.org/space/xtce}ParameterRefType"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ParameterSetType", propOrder = { "parameterOrParameterRef" }) public class ParameterSetType { @XmlElements({ @XmlElement(name = "Parameter", type = ParameterSetType.Parameter.class), @XmlElement(name = "ParameterRef", type = ParameterRefType.class) }) protected List parameterOrParameterRef; /** * Gets the value of the parameterOrParameterRef 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 parameterOrParameterRef property. * *

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

     *    getParameterOrParameterRef().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ParameterSetType.Parameter } * {@link ParameterRefType } * * */ public List getParameterOrParameterRef() { if (parameterOrParameterRef == null) { parameterOrParameterRef = new ArrayList(); } return this.parameterOrParameterRef; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://www.omg.org/space/xtce}NameDescriptionType">
     *       <sequence>
     *         <element name="ParameterProperties" type="{http://www.omg.org/space/xtce}ParameterPropertiesType" minOccurs="0"/>
     *       </sequence>
     *       <attribute name="parameterTypeRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
     *       <attribute name="initialValue" type="{http://www.w3.org/2001/XMLSchema}string" />
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parameterProperties" }) public static class Parameter extends NameDescriptionType { @XmlElement(name = "ParameterProperties") protected ParameterPropertiesType parameterProperties; @XmlAttribute(name = "parameterTypeRef", required = true) protected String parameterTypeRef; @XmlAttribute(name = "initialValue") protected String initialValue; /** * Gets the value of the parameterProperties property. * * @return * possible object is * {@link ParameterPropertiesType } * */ public ParameterPropertiesType getParameterProperties() { return parameterProperties; } /** * Sets the value of the parameterProperties property. * * @param value * allowed object is * {@link ParameterPropertiesType } * */ public void setParameterProperties(ParameterPropertiesType value) { this.parameterProperties = value; } /** * Gets the value of the parameterTypeRef property. * * @return * possible object is * {@link String } * */ public String getParameterTypeRef() { return parameterTypeRef; } /** * Sets the value of the parameterTypeRef property. * * @param value * allowed object is * {@link String } * */ public void setParameterTypeRef(String value) { this.parameterTypeRef = value; } /** * Gets the value of the initialValue property. * * @return * possible object is * {@link String } * */ public String getInitialValue() { return initialValue; } /** * Sets the value of the initialValue property. * * @param value * allowed object is * {@link String } * */ public void setInitialValue(String value) { this.initialValue = value; } } }