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

org.yamcs.simulation.generated.PpSimulation Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.04.05 at 03:55:01 PM CEST 
//


package org.yamcs.simulation.generated;

import java.math.BigDecimal;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

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="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="parameterSequence" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="parameter" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <attribute name="spaceSystem" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="paraName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="valueType" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" />
 *                           <attribute name="rawValueType" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="rawValue" type="{http://www.w3.org/2001/XMLSchema}decimal" />
 *                           <attribute name="monitoringResult" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="generationStep" type="{http://www.w3.org/2001/XMLSchema}int" />
 *                           <attribute name="aquisitionStep" type="{http://www.w3.org/2001/XMLSchema}int" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *                 <attribute name="repeat" type="{http://www.w3.org/2001/XMLSchema}int" />
 *                 <attribute name="loop" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *                 <attribute name="stepOffset" type="{http://www.w3.org/2001/XMLSchema}int" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="stepLengthMs" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="loop" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "description", "parameterSequence" }) @XmlRootElement(name = "ppSimulation") public class PpSimulation { @XmlElement(required = true) protected String description; @XmlElement(required = true) protected List parameterSequence; @XmlAttribute(name = "startDate") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDate; @XmlAttribute(name = "stepLengthMs") protected Integer stepLengthMs; @XmlAttribute(name = "loop") protected Boolean loop; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the parameterSequence 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 parameterSequence property. * *

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

     *    getParameterSequence().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PpSimulation.ParameterSequence } * * */ public List getParameterSequence() { if (parameterSequence == null) { parameterSequence = new ArrayList(); } return this.parameterSequence; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the stepLengthMs property. * * @return * possible object is * {@link Integer } * */ public Integer getStepLengthMs() { return stepLengthMs; } /** * Sets the value of the stepLengthMs property. * * @param value * allowed object is * {@link Integer } * */ public void setStepLengthMs(Integer value) { this.stepLengthMs = value; } /** * Gets the value of the loop property. * * @return * possible object is * {@link Boolean } * */ public Boolean isLoop() { return loop; } /** * Sets the value of the loop property. * * @param value * allowed object is * {@link Boolean } * */ public void setLoop(Boolean value) { this.loop = 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="parameter" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <attribute name="spaceSystem" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                 <attribute name="paraName" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                 <attribute name="valueType" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                 <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" />
     *                 <attribute name="rawValueType" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                 <attribute name="rawValue" type="{http://www.w3.org/2001/XMLSchema}decimal" />
     *                 <attribute name="monitoringResult" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                 <attribute name="generationStep" type="{http://www.w3.org/2001/XMLSchema}int" />
     *                 <attribute name="aquisitionStep" type="{http://www.w3.org/2001/XMLSchema}int" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *       <attribute name="repeat" type="{http://www.w3.org/2001/XMLSchema}int" />
     *       <attribute name="loop" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     *       <attribute name="stepOffset" type="{http://www.w3.org/2001/XMLSchema}int" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parameter" }) public static class ParameterSequence { @XmlElement(required = true) protected List parameter; @XmlAttribute(name = "repeat") protected Integer repeat; @XmlAttribute(name = "loop") protected Boolean loop; @XmlAttribute(name = "stepOffset") protected Integer stepOffset; /** * Gets the value of the parameter 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 parameter property. * *

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

         *    getParameter().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PpSimulation.ParameterSequence.Parameter } * * */ public List getParameter() { if (parameter == null) { parameter = new ArrayList(); } return this.parameter; } /** * Gets the value of the repeat property. * * @return * possible object is * {@link Integer } * */ public Integer getRepeat() { return repeat; } /** * Sets the value of the repeat property. * * @param value * allowed object is * {@link Integer } * */ public void setRepeat(Integer value) { this.repeat = value; } /** * Gets the value of the loop property. * * @return * possible object is * {@link Boolean } * */ public Boolean isLoop() { return loop; } /** * Sets the value of the loop property. * * @param value * allowed object is * {@link Boolean } * */ public void setLoop(Boolean value) { this.loop = value; } /** * Gets the value of the stepOffset property. * * @return * possible object is * {@link Integer } * */ public Integer getStepOffset() { return stepOffset; } /** * Sets the value of the stepOffset property. * * @param value * allowed object is * {@link Integer } * */ public void setStepOffset(Integer value) { this.stepOffset = 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">
         *       <attribute name="spaceSystem" type="{http://www.w3.org/2001/XMLSchema}string" />
         *       <attribute name="paraName" type="{http://www.w3.org/2001/XMLSchema}string" />
         *       <attribute name="valueType" type="{http://www.w3.org/2001/XMLSchema}string" />
         *       <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" />
         *       <attribute name="rawValueType" type="{http://www.w3.org/2001/XMLSchema}string" />
         *       <attribute name="rawValue" type="{http://www.w3.org/2001/XMLSchema}decimal" />
         *       <attribute name="monitoringResult" type="{http://www.w3.org/2001/XMLSchema}string" />
         *       <attribute name="generationStep" type="{http://www.w3.org/2001/XMLSchema}int" />
         *       <attribute name="aquisitionStep" type="{http://www.w3.org/2001/XMLSchema}int" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Parameter { @XmlAttribute(name = "spaceSystem") protected String spaceSystem; @XmlAttribute(name = "paraName") protected String paraName; @XmlAttribute(name = "valueType") protected String valueType; @XmlAttribute(name = "value") protected BigDecimal value; @XmlAttribute(name = "rawValueType") protected String rawValueType; @XmlAttribute(name = "rawValue") protected BigDecimal rawValue; @XmlAttribute(name = "monitoringResult") protected String monitoringResult; @XmlAttribute(name = "generationStep") protected Integer generationStep; @XmlAttribute(name = "aquisitionStep") protected Integer aquisitionStep; /** * Gets the value of the spaceSystem property. * * @return * possible object is * {@link String } * */ public String getSpaceSystem() { return spaceSystem; } /** * Sets the value of the spaceSystem property. * * @param value * allowed object is * {@link String } * */ public void setSpaceSystem(String value) { this.spaceSystem = value; } /** * Gets the value of the paraName property. * * @return * possible object is * {@link String } * */ public String getParaName() { return paraName; } /** * Sets the value of the paraName property. * * @param value * allowed object is * {@link String } * */ public void setParaName(String value) { this.paraName = value; } /** * Gets the value of the valueType property. * * @return * possible object is * {@link String } * */ public String getValueType() { return valueType; } /** * Sets the value of the valueType property. * * @param value * allowed object is * {@link String } * */ public void setValueType(String value) { this.valueType = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setValue(BigDecimal value) { this.value = value; } /** * Gets the value of the rawValueType property. * * @return * possible object is * {@link String } * */ public String getRawValueType() { return rawValueType; } /** * Sets the value of the rawValueType property. * * @param value * allowed object is * {@link String } * */ public void setRawValueType(String value) { this.rawValueType = value; } /** * Gets the value of the rawValue property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getRawValue() { return rawValue; } /** * Sets the value of the rawValue property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setRawValue(BigDecimal value) { this.rawValue = value; } /** * Gets the value of the monitoringResult property. * * @return * possible object is * {@link String } * */ public String getMonitoringResult() { return monitoringResult; } /** * Sets the value of the monitoringResult property. * * @param value * allowed object is * {@link String } * */ public void setMonitoringResult(String value) { this.monitoringResult = value; } /** * Gets the value of the generationStep property. * * @return * possible object is * {@link Integer } * */ public Integer getGenerationStep() { return generationStep; } /** * Sets the value of the generationStep property. * * @param value * allowed object is * {@link Integer } * */ public void setGenerationStep(Integer value) { this.generationStep = value; } /** * Gets the value of the aquisitionStep property. * * @return * possible object is * {@link Integer } * */ public Integer getAquisitionStep() { return aquisitionStep; } /** * Sets the value of the aquisitionStep property. * * @param value * allowed object is * {@link Integer } * */ public void setAquisitionStep(Integer value) { this.aquisitionStep = value; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy