// // 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.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; /** * A concrete operation on coordinates that does not include any change of Datum. The best-known example of a coordinate conversion is a map projection. The parameters describing coordinate conversions are defined rather than empirically derived. Note that some conversions have no parameters. * * This concrete complexType can be used with all operation methods, without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one Conversion instance. * * <p>Java-Klasse für ConversionType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="ConversionType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGeneralConversionType"> * <sequence> * <element ref="{http://www.opengis.net/gml}usesMethod"/> * <element ref="{http://www.opengis.net/gml}usesValue" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConversionType", propOrder = { "usesMethod", "usesValue" }) public class ConversionType extends AbstractGeneralConversionType { @XmlElement(required = true) protected OperationMethodRefType usesMethod; protected List<ParameterValueType> usesValue; /** * Ruft den Wert der usesMethod-Eigenschaft ab. * * @return * possible object is * {@link OperationMethodRefType } * */ public OperationMethodRefType getUsesMethod() { return usesMethod; } /** * Legt den Wert der usesMethod-Eigenschaft fest. * * @param value * allowed object is * {@link OperationMethodRefType } * */ public void setUsesMethod(OperationMethodRefType value) { this.usesMethod = value; } public boolean isSetUsesMethod() { return (this.usesMethod!= null); } /** * Unordered list of composition associations to the set of parameter values used by this conversion operation. Gets the value of the usesValue 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 usesValue property. * * <p> * For example, to add a new item, do as follows: * <pre> * getUsesValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ParameterValueType } * * */ public List<ParameterValueType> getUsesValue() { if (usesValue == null) { usesValue = new ArrayList<ParameterValueType>(); } return this.usesValue; } public boolean isSetUsesValue() { return ((this.usesValue!= null)&&(!this.usesValue.isEmpty())); } public void unsetUsesValue() { this.usesValue = null; } public void setUsesValue(List<ParameterValueType> value) { this.usesValue = value; } }