// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import java.math.BigInteger; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * The definition of a group of parameters used by an operation method. This complexType is expected to be used or extended for all applicable operation methods, without defining operation-method-specialized element names. * * <p>Java-Klasse für OperationParameterGroupType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="OperationParameterGroupType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}OperationParameterGroupBaseType"> * <sequence> * <element ref="{http://www.opengis.net/gml}groupID" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml}remarks" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml}maximumOccurs" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml}includesParameter" maxOccurs="unbounded" minOccurs="2"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OperationParameterGroupType", propOrder = { "groupID", "remarks", "maximumOccurs", "includesParameter" }) public class OperationParameterGroupType extends OperationParameterGroupBaseType { protected List<IdentifierType> groupID; protected StringOrRefType remarks; @XmlSchemaType(name = "positiveInteger") protected BigInteger maximumOccurs; @XmlElement(required = true) protected List<AbstractGeneralOperationParameterRefType> includesParameter; /** * Set of alternative identifications of this operation parameter group. The first groupID, if any, is normally the primary identification code, and any others are aliases. Gets the value of the groupID property. * * <p> * 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 <CODE>set</CODE> method for the groupID property. * * <p> * For example, to add a new item, do as follows: * <pre> * getGroupID().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link IdentifierType } * * */ public List<IdentifierType> getGroupID() { if (groupID == null) { groupID = new ArrayList<IdentifierType>(); } return this.groupID; } public boolean isSetGroupID() { return ((this.groupID!= null)&&(!this.groupID.isEmpty())); } public void unsetGroupID() { this.groupID = null; } /** * Comments on or information about this operation parameter group, including source information. * * @return * possible object is * {@link StringOrRefType } * */ public StringOrRefType getRemarks() { return remarks; } /** * Legt den Wert der remarks-Eigenschaft fest. * * @param value * allowed object is * {@link StringOrRefType } * */ public void setRemarks(StringOrRefType value) { this.remarks = value; } public boolean isSetRemarks() { return (this.remarks!= null); } /** * Ruft den Wert der maximumOccurs-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaximumOccurs() { return maximumOccurs; } /** * Legt den Wert der maximumOccurs-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaximumOccurs(BigInteger value) { this.maximumOccurs = value; } public boolean isSetMaximumOccurs() { return (this.maximumOccurs!= null); } /** * Unordered list of associations to the set of operation parameters that are members of this group. Gets the value of the includesParameter property. * * <p> * 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 <CODE>set</CODE> method for the includesParameter property. * * <p> * For example, to add a new item, do as follows: * <pre> * getIncludesParameter().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractGeneralOperationParameterRefType } * * */ public List<AbstractGeneralOperationParameterRefType> getIncludesParameter() { if (includesParameter == null) { includesParameter = new ArrayList<AbstractGeneralOperationParameterRefType>(); } return this.includesParameter; } public boolean isSetIncludesParameter() { return ((this.includesParameter!= null)&&(!this.includesParameter.isEmpty())); } public void unsetIncludesParameter() { this.includesParameter = null; } public void setGroupID(List<IdentifierType> value) { this.groupID = value; } public void setIncludesParameter(List<AbstractGeneralOperationParameterRefType> value) { this.includesParameter = value; } }