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

energyml.prodml2_0.OilShrinkageFactor 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.prodml2_0;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.VolumePerVolumeMeasure;


/**
 * Oil shrinkage factor.
 * 
 * 

Java class for OilShrinkageFactor complex type. * *

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

 * <complexType name="OilShrinkageFactor">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/prodmlv2}AbstractOilVolShrinkage">
 *       <sequence minOccurs="0">
 *         <element name="OilShrinkageFactor" type="energyml.common2_1.VolumePerVolumeMeasure"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OilShrinkageFactor", propOrder = { "oilShrinkageFactor" }) public class OilShrinkageFactor extends AbstractOilVolShrinkage { @XmlElement(name = "OilShrinkageFactor") protected VolumePerVolumeMeasure oilShrinkageFactor; /** * Gets the value of the oilShrinkageFactor property. * * @return * possible object is * {@link VolumePerVolumeMeasure } * */ public VolumePerVolumeMeasure getOilShrinkageFactor() { return oilShrinkageFactor; } /** * Sets the value of the oilShrinkageFactor property. * * @param value * allowed object is * {@link VolumePerVolumeMeasure } * */ public void setOilShrinkageFactor(VolumePerVolumeMeasure value) { this.oilShrinkageFactor = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy