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

energyml.common2_1.GaugePressure Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.13 at 08:02:05 PM UTC 
//


package energyml.common2_1;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for GaugePressure complex type. * *

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

 * <complexType name="GaugePressure">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractPressureValue">
 *       <sequence>
 *         <element name="GaugePressure" type="energyml.common2_1.PressureMeasureExt"/>
 *         <element name="ReferencePressure" type="energyml.common2_1.ReferencePressure" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GaugePressure", propOrder = { "gaugePressure", "referencePressure" }) public class GaugePressure extends AbstractPressureValue { @XmlElement(name = "GaugePressure", required = true) protected PressureMeasureExt gaugePressure; @XmlElement(name = "ReferencePressure") protected ReferencePressure referencePressure; /** * Gets the value of the gaugePressure property. * * @return * possible object is * {@link PressureMeasureExt } * */ public PressureMeasureExt getGaugePressure() { return gaugePressure; } /** * Sets the value of the gaugePressure property. * * @param value * allowed object is * {@link PressureMeasureExt } * */ public void setGaugePressure(PressureMeasureExt value) { this.gaugePressure = value; } /** * Gets the value of the referencePressure property. * * @return * possible object is * {@link ReferencePressure } * */ public ReferencePressure getReferencePressure() { return referencePressure; } /** * Sets the value of the referencePressure property. * * @param value * allowed object is * {@link ReferencePressure } * */ public void setReferencePressure(ReferencePressure value) { this.referencePressure = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy