com.hashmapinc.tempus.WitsmlObjects.v20.ActivityTemplate Maven / Gradle / Ivy
Show all versions of WitsmlObjects Show documentation
package com.hashmapinc.tempus.WitsmlObjects.v20;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Description of one type of activity.
*
* Java class for ActivityTemplate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ActivityTemplate", propOrder = {
"parameter"
})
public class ActivityTemplate
extends AbstractObject
{
@XmlElement(name = "Parameter", required = true)
protected List parameter;
/**
* Gets the value of the parameter 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 JAXB object.
* This is why there is not a set
method for the parameter property.
*
*
* For example, to add a new item, do as follows:
*
* getParameter().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ParameterTemplate }
*
*
*/
public List getParameter() {
if (parameter == null) {
parameter = new ArrayList();
}
return this.parameter;
}
}