// // 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; /** * A pass-through operation specifies that a subset of a coordinate tuple is subject to a specific coordinate operation. * * <p>Java-Klasse für PassThroughOperationType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="PassThroughOperationType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractCoordinateOperationType"> * <sequence> * <element ref="{http://www.opengis.net/gml}modifiedCoordinate" maxOccurs="unbounded"/> * <element ref="{http://www.opengis.net/gml}usesOperation"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PassThroughOperationType", propOrder = { "modifiedCoordinate", "usesOperation" }) public class PassThroughOperationType extends AbstractCoordinateOperationType { @XmlElement(required = true) @XmlSchemaType(name = "positiveInteger") protected List<BigInteger> modifiedCoordinate; @XmlElement(required = true) protected OperationRefType usesOperation; /** * Ordered sequence of positive integers defining the positions in a coordinate tuple of the coordinates affected by this pass-through operation. Gets the value of the modifiedCoordinate 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 modifiedCoordinate property. * * <p> * For example, to add a new item, do as follows: * <pre> * getModifiedCoordinate().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link BigInteger } * * */ public List<BigInteger> getModifiedCoordinate() { if (modifiedCoordinate == null) { modifiedCoordinate = new ArrayList<BigInteger>(); } return this.modifiedCoordinate; } public boolean isSetModifiedCoordinate() { return ((this.modifiedCoordinate!= null)&&(!this.modifiedCoordinate.isEmpty())); } public void unsetModifiedCoordinate() { this.modifiedCoordinate = null; } /** * Ruft den Wert der usesOperation-Eigenschaft ab. * * @return * possible object is * {@link OperationRefType } * */ public OperationRefType getUsesOperation() { return usesOperation; } /** * Legt den Wert der usesOperation-Eigenschaft fest. * * @param value * allowed object is * {@link OperationRefType } * */ public void setUsesOperation(OperationRefType value) { this.usesOperation = value; } public boolean isSetUsesOperation() { return (this.usesOperation!= null); } public void setModifiedCoordinate(List<BigInteger> value) { this.modifiedCoordinate = value; } }