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

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


/**
 * Holds an arbitrarily complex boolean expression
 * 
 * 

Java class for BooleanExpressionType complex type. * *

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

 * <complexType name="BooleanExpressionType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="Condition" type="{http://www.omg.org/space/xtce}ComparisonCheckType"/>
 *         <element name="ANDedConditions" type="{http://www.omg.org/space/xtce}ANDedConditionsType"/>
 *         <element name="ORedConditions" type="{http://www.omg.org/space/xtce}ORedConditionsType"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BooleanExpressionType", propOrder = { "condition", "anDedConditions", "oRedConditions" }) public class BooleanExpressionType { @XmlElement(name = "Condition") protected ComparisonCheckType condition; @XmlElement(name = "ANDedConditions") protected ANDedConditionsType anDedConditions; @XmlElement(name = "ORedConditions") protected ORedConditionsType oRedConditions; /** * Gets the value of the condition property. * * @return * possible object is * {@link ComparisonCheckType } * */ public ComparisonCheckType getCondition() { return condition; } /** * Sets the value of the condition property. * * @param value * allowed object is * {@link ComparisonCheckType } * */ public void setCondition(ComparisonCheckType value) { this.condition = value; } /** * Gets the value of the anDedConditions property. * * @return * possible object is * {@link ANDedConditionsType } * */ public ANDedConditionsType getANDedConditions() { return anDedConditions; } /** * Sets the value of the anDedConditions property. * * @param value * allowed object is * {@link ANDedConditionsType } * */ public void setANDedConditions(ANDedConditionsType value) { this.anDedConditions = value; } /** * Gets the value of the oRedConditions property. * * @return * possible object is * {@link ORedConditionsType } * */ public ORedConditionsType getORedConditions() { return oRedConditions; } /** * Sets the value of the oRedConditions property. * * @param value * allowed object is * {@link ORedConditionsType } * */ public void setORedConditions(ORedConditionsType value) { this.oRedConditions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy