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

energyml.prodml2_0.FluidAnalysisReport 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 javax.xml.datatype.XMLGregorianCalendar;
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;
import energyml.common2_1.DataObjectReference;


/**
 * Fluid analysis report.
 * 
 * 

Java class for FluidAnalysisReport complex type. * *

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

 * <complexType name="FluidAnalysisReport">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AnalysisLaboratory" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Author" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReportDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="ReportDocumentReference" type="energyml.common2_1.DataObjectReference" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReportIdentifier" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReportLocation" type="energyml.prodml2_0.ReportLocation" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="uid" use="required" type="energyml.common2_1.String64" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FluidAnalysisReport", propOrder = { "analysisLaboratory", "author", "reportDate", "reportDocumentReference", "reportIdentifier", "reportLocation" }) public class FluidAnalysisReport { @XmlElement(name = "AnalysisLaboratory") protected List analysisLaboratory; @XmlElement(name = "Author") protected List author; @XmlElement(name = "ReportDate") @XmlSchemaType(name = "date") protected XMLGregorianCalendar reportDate; @XmlElement(name = "ReportDocumentReference") protected List reportDocumentReference; @XmlElement(name = "ReportIdentifier") protected List reportIdentifier; @XmlElement(name = "ReportLocation") protected List reportLocation; @XmlAttribute(name = "uid", required = true) protected String uid; /** * Gets the value of the analysisLaboratory 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 analysisLaboratory property. * *

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

     *    getAnalysisLaboratory().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAnalysisLaboratory() { if (analysisLaboratory == null) { analysisLaboratory = new ArrayList(); } return this.analysisLaboratory; } /** * Gets the value of the author 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 author property. * *

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

     *    getAuthor().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAuthor() { if (author == null) { author = new ArrayList(); } return this.author; } /** * Gets the value of the reportDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getReportDate() { return reportDate; } /** * Sets the value of the reportDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setReportDate(XMLGregorianCalendar value) { this.reportDate = value; } /** * Gets the value of the reportDocumentReference 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 reportDocumentReference property. * *

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

     *    getReportDocumentReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DataObjectReference } * * */ public List getReportDocumentReference() { if (reportDocumentReference == null) { reportDocumentReference = new ArrayList(); } return this.reportDocumentReference; } /** * Gets the value of the reportIdentifier 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 reportIdentifier property. * *

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

     *    getReportIdentifier().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getReportIdentifier() { if (reportIdentifier == null) { reportIdentifier = new ArrayList(); } return this.reportIdentifier; } /** * Gets the value of the reportLocation 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 reportLocation property. * *

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

     *    getReportLocation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReportLocation } * * */ public List getReportLocation() { if (reportLocation == null) { reportLocation = new ArrayList(); } return this.reportLocation; } /** * 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