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

org.omg.space.xtce.TimeAssociationType 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.Duration;


/**
 * Telemetry parameter instances are oftentimes "time-tagged" with a timing signal either provided on the ground or on  the space system.  This data element allows one to specify which of possibly many AbsoluteTimeParameters to use to "time-tag" parameter instances with.  
 * 
 * 

Java class for TimeAssociationType complex type. * *

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

 * <complexType name="TimeAssociationType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}ParameterInstanceRefType">
 *       <attribute name="interpolateTime" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *       <attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}duration" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TimeAssociationType") public class TimeAssociationType extends ParameterInstanceRefType { @XmlAttribute(name = "interpolateTime") protected Boolean interpolateTime; @XmlAttribute(name = "offset") protected Duration offset; /** * Gets the value of the interpolateTime property. * * @return * possible object is * {@link Boolean } * */ public boolean isInterpolateTime() { if (interpolateTime == null) { return true; } else { return interpolateTime; } } /** * Sets the value of the interpolateTime property. * * @param value * allowed object is * {@link Boolean } * */ public void setInterpolateTime(Boolean value) { this.interpolateTime = value; } /** * Gets the value of the offset property. * * @return * possible object is * {@link Duration } * */ public Duration getOffset() { return offset; } /** * Sets the value of the offset property. * * @param value * allowed object is * {@link Duration } * */ public void setOffset(Duration value) { this.offset = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy