energyml.prodml2_0.AbstractDtsEquipment Maven / Gradle / Ivy
Show all versions of energyml-prodml20 Show documentation
//
// 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.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* The abstract class of equipment in the optical path from which all components in the optical path inherit.
*
* Java class for AbstractDtsEquipment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AbstractDtsEquipment">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Comment" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Manufacturer" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ManufacturingDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Name" type="energyml.common2_1.String64"/>
* <element name="SoftwareVersion" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Supplier" type="energyml.prodml2_0.BusinessAssociate" minOccurs="0"/>
* <element name="SupplierModelNumber" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="SupplyDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Type" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstractDtsEquipment", propOrder = {
"comment",
"manufacturer",
"manufacturingDate",
"name",
"softwareVersion",
"supplier",
"supplierModelNumber",
"supplyDate",
"type"
})
@XmlSeeAlso({
Instrument.class,
FiberCommon.class
})
public abstract class AbstractDtsEquipment {
@XmlElement(name = "Comment")
protected List comment;
@XmlElement(name = "Manufacturer")
protected List manufacturer;
@XmlElement(name = "ManufacturingDate")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar manufacturingDate;
@XmlElement(name = "Name", required = true)
protected String name;
@XmlElement(name = "SoftwareVersion")
protected List softwareVersion;
@XmlElement(name = "Supplier")
protected BusinessAssociate supplier;
@XmlElement(name = "SupplierModelNumber")
protected List supplierModelNumber;
@XmlElement(name = "SupplyDate")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar supplyDate;
@XmlElement(name = "Type")
protected List type;
/**
* Gets the value of the comment 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 comment property.
*
*
* For example, to add a new item, do as follows:
*
* getComment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getComment() {
if (comment == null) {
comment = new ArrayList();
}
return this.comment;
}
/**
* Gets the value of the manufacturer 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 manufacturer property.
*
*
* For example, to add a new item, do as follows:
*
* getManufacturer().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getManufacturer() {
if (manufacturer == null) {
manufacturer = new ArrayList();
}
return this.manufacturer;
}
/**
* Gets the value of the manufacturingDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getManufacturingDate() {
return manufacturingDate;
}
/**
* Sets the value of the manufacturingDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setManufacturingDate(XMLGregorianCalendar value) {
this.manufacturingDate = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the softwareVersion 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 softwareVersion property.
*
*
* For example, to add a new item, do as follows:
*
* getSoftwareVersion().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSoftwareVersion() {
if (softwareVersion == null) {
softwareVersion = new ArrayList();
}
return this.softwareVersion;
}
/**
* Gets the value of the supplier property.
*
* @return
* possible object is
* {@link BusinessAssociate }
*
*/
public BusinessAssociate getSupplier() {
return supplier;
}
/**
* Sets the value of the supplier property.
*
* @param value
* allowed object is
* {@link BusinessAssociate }
*
*/
public void setSupplier(BusinessAssociate value) {
this.supplier = value;
}
/**
* Gets the value of the supplierModelNumber 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 supplierModelNumber property.
*
*
* For example, to add a new item, do as follows:
*
* getSupplierModelNumber().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSupplierModelNumber() {
if (supplierModelNumber == null) {
supplierModelNumber = new ArrayList();
}
return this.supplierModelNumber;
}
/**
* Gets the value of the supplyDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSupplyDate() {
return supplyDate;
}
/**
* Sets the value of the supplyDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSupplyDate(XMLGregorianCalendar value) {
this.supplyDate = value;
}
/**
* Gets the value of the type 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 type property.
*
*
* For example, to add a new item, do as follows:
*
* getType().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getType() {
if (type == null) {
type = new ArrayList();
}
return this.type;
}
}