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

energyml.prodml2_0.InterfacialTensionTest 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 java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * The interfacial tension test.
 * 
 * 

Java class for InterfacialTensionTest complex type. * *

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

 * <complexType name="InterfacialTensionTest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Remark" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Surfactant" type="energyml.prodml2_0.AbstractFluidComponent" minOccurs="0"/>
 *         <element name="TestNumber" type="energyml.common2_1.NonNegativeLong"/>
 *         <element name="InterfacialTensionTestStep" type="energyml.prodml2_0.InterfacialTensionTestStep" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="WettingPhase" type="energyml.prodml2_0.ThermodynamicPhase"/>
 *         <element name="nonWettingPhase" type="energyml.prodml2_0.ThermodynamicPhase"/>
 *       </sequence>
 *       <attribute name="uid" use="required" type="energyml.common2_1.String64" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InterfacialTensionTest", propOrder = { "remark", "surfactant", "testNumber", "interfacialTensionTestStep", "wettingPhase", "nonWettingPhase" }) public class InterfacialTensionTest { @XmlElement(name = "Remark") protected List remark; @XmlElement(name = "Surfactant") protected AbstractFluidComponent surfactant; @XmlElement(name = "TestNumber") protected long testNumber; @XmlElement(name = "InterfacialTensionTestStep") protected List interfacialTensionTestStep; @XmlElement(name = "WettingPhase", required = true) @XmlSchemaType(name = "string") protected ThermodynamicPhase wettingPhase; @XmlElement(required = true) @XmlSchemaType(name = "string") protected ThermodynamicPhase nonWettingPhase; @XmlAttribute(name = "uid", required = true) protected String uid; /** * Gets the value of the remark property. * *

* 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 Jakarta XML Binding object. * This is why there is not a set method for the remark property. * *

* For example, to add a new item, do as follows: *

     *    getRemark().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getRemark() { if (remark == null) { remark = new ArrayList(); } return this.remark; } /** * Gets the value of the surfactant property. * * @return * possible object is * {@link AbstractFluidComponent } * */ public AbstractFluidComponent getSurfactant() { return surfactant; } /** * Sets the value of the surfactant property. * * @param value * allowed object is * {@link AbstractFluidComponent } * */ public void setSurfactant(AbstractFluidComponent value) { this.surfactant = value; } /** * Gets the value of the testNumber property. * */ public long getTestNumber() { return testNumber; } /** * Sets the value of the testNumber property. * */ public void setTestNumber(long value) { this.testNumber = value; } /** * Gets the value of the interfacialTensionTestStep property. * *

* 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 Jakarta XML Binding object. * This is why there is not a set method for the interfacialTensionTestStep property. * *

* For example, to add a new item, do as follows: *

     *    getInterfacialTensionTestStep().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link InterfacialTensionTestStep } * * */ public List getInterfacialTensionTestStep() { if (interfacialTensionTestStep == null) { interfacialTensionTestStep = new ArrayList(); } return this.interfacialTensionTestStep; } /** * Gets the value of the wettingPhase property. * * @return * possible object is * {@link ThermodynamicPhase } * */ public ThermodynamicPhase getWettingPhase() { return wettingPhase; } /** * Sets the value of the wettingPhase property. * * @param value * allowed object is * {@link ThermodynamicPhase } * */ public void setWettingPhase(ThermodynamicPhase value) { this.wettingPhase = value; } /** * Gets the value of the nonWettingPhase property. * * @return * possible object is * {@link ThermodynamicPhase } * */ public ThermodynamicPhase getNonWettingPhase() { return nonWettingPhase; } /** * Sets the value of the nonWettingPhase property. * * @param value * allowed object is * {@link ThermodynamicPhase } * */ public void setNonWettingPhase(ThermodynamicPhase value) { this.nonWettingPhase = value; } /** * Gets the value of the uid property. * * @return * possible object is * {@link String } * */ public String getUid() { return uid; } /** * Sets the value of the uid property. * * @param value * allowed object is * {@link String } * */ public void setUid(String value) { this.uid = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy