net.datastream.schemas.mp_results.mp0347_001.ResultData Maven / Gradle / Ivy
package net.datastream.schemas.mp_results.mp0347_001;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_fields.EQUIPMENTID_Type;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ParentEquipment" type="{http://schemas.datastream.net/MP_fields}EQUIPMENTID_Type"/>
* <element name="ChildEquipment" type="{http://schemas.datastream.net/MP_fields}EQUIPMENTID_Type"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"parentEquipment",
"childEquipment"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "ParentEquipment", required = true)
protected EQUIPMENTID_Type parentEquipment;
@XmlElement(name = "ChildEquipment", required = true)
protected EQUIPMENTID_Type childEquipment;
/**
* Gets the value of the parentEquipment property.
*
* @return
* possible object is
* {@link EQUIPMENTID_Type }
*
*/
public EQUIPMENTID_Type getParentEquipment() {
return parentEquipment;
}
/**
* Sets the value of the parentEquipment property.
*
* @param value
* allowed object is
* {@link EQUIPMENTID_Type }
*
*/
public void setParentEquipment(EQUIPMENTID_Type value) {
this.parentEquipment = value;
}
/**
* Gets the value of the childEquipment property.
*
* @return
* possible object is
* {@link EQUIPMENTID_Type }
*
*/
public EQUIPMENTID_Type getChildEquipment() {
return childEquipment;
}
/**
* Sets the value of the childEquipment property.
*
* @param value
* allowed object is
* {@link EQUIPMENTID_Type }
*
*/
public void setChildEquipment(EQUIPMENTID_Type value) {
this.childEquipment = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy