// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.06.02 at 02:49:47 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; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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="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> * </pre> * * */ @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<PpSimulation.ParameterSequence> 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. * * <p> * 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 <CODE>set</CODE> method for the parameterSequence property. * * <p> * For example, to add a new item, do as follows: * <pre> * getParameterSequence().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PpSimulation.ParameterSequence } * * */ public List<PpSimulation.ParameterSequence> getParameterSequence() { if (parameterSequence == null) { parameterSequence = new ArrayList<PpSimulation.ParameterSequence>(); } 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; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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="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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parameter" }) public static class ParameterSequence { @XmlElement(required = true) protected List<PpSimulation.ParameterSequence.Parameter> 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. * * <p> * 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 <CODE>set</CODE> method for the parameter property. * * <p> * For example, to add a new item, do as follows: * <pre> * getParameter().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PpSimulation.ParameterSequence.Parameter } * * */ public List<PpSimulation.ParameterSequence.Parameter> getParameter() { if (parameter == null) { parameter = new ArrayList<PpSimulation.ParameterSequence.Parameter>(); } 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; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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="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> * </pre> * * */ @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 = "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 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; } } } }