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

org.omg.space.xtce.AggregateDataType 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;


/**
 * Contains multiple values (as members) of any type
 * 
 * 

Java class for AggregateDataType complex type. * *

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

 * <complexType name="AggregateDataType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}NameDescriptionType">
 *       <sequence>
 *         <element name="MemberList">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Member" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="ParameterProperties" type="{http://www.omg.org/space/xtce}ParameterPropertiesType" minOccurs="0"/>
 *                           </sequence>
 *                           <attribute name="name" use="required" type="{http://www.omg.org/space/xtce}NameType" />
 *                           <attribute name="typeRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AggregateDataType", propOrder = { "memberList" }) public class AggregateDataType extends NameDescriptionType { @XmlElement(name = "MemberList", required = true) protected AggregateDataType.MemberList memberList; /** * Gets the value of the memberList property. * * @return * possible object is * {@link AggregateDataType.MemberList } * */ public AggregateDataType.MemberList getMemberList() { return memberList; } /** * Sets the value of the memberList property. * * @param value * allowed object is * {@link AggregateDataType.MemberList } * */ public void setMemberList(AggregateDataType.MemberList value) { this.memberList = 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">
     *       <sequence>
     *         <element name="Member" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="ParameterProperties" type="{http://www.omg.org/space/xtce}ParameterPropertiesType" minOccurs="0"/>
     *                 </sequence>
     *                 <attribute name="name" use="required" type="{http://www.omg.org/space/xtce}NameType" />
     *                 <attribute name="typeRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "member" }) public static class MemberList { @XmlElement(name = "Member", required = true) protected List member; /** * Gets the value of the member 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 member property. * *

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

         *    getMember().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AggregateDataType.MemberList.Member } * * */ public List getMember() { if (member == null) { member = new ArrayList(); } return this.member; } /** *

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="ParameterProperties" type="{http://www.omg.org/space/xtce}ParameterPropertiesType" minOccurs="0"/>
         *       </sequence>
         *       <attribute name="name" use="required" type="{http://www.omg.org/space/xtce}NameType" />
         *       <attribute name="typeRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parameterProperties" }) public static class Member { @XmlElement(name = "ParameterProperties") protected ParameterPropertiesType parameterProperties; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "typeRef", required = true) protected String typeRef; /** * 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 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; } /** * Gets the value of the typeRef property. * * @return * possible object is * {@link String } * */ public String getTypeRef() { return typeRef; } /** * Sets the value of the typeRef property. * * @param value * allowed object is * {@link String } * */ public void setTypeRef(String value) { this.typeRef = value; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy