// // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * Paremeters of a simple formula by which a value using this unit of measure can be converted to the corresponding value using the preferred unit of measure. The formula element contains elements a, b, c and d, whose values use the XML Schema type "double". These values are used in the formula y = (a + bx) / (c + dx), where x is a value using this unit, and y is the corresponding value using the preferred unit. The elements a and d are optional, and if values are not provided, those parameters are considered to be zero. If values are not provided for both a and d, the formula is equivalent to a fraction with numerator and denominator parameters. * * <p>Java-Klasse für FormulaType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="FormulaType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="a" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * <element name="b" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="c" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="d" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FormulaType", propOrder = { "a", "b", "c", "d" }) public class FormulaType { protected Double a; protected double b; protected double c; protected Double d; /** * Ruft den Wert der a-Eigenschaft ab. * * @return * possible object is * {@link Double } * */ public Double getA() { return a; } /** * Legt den Wert der a-Eigenschaft fest. * * @param value * allowed object is * {@link Double } * */ public void setA(Double value) { this.a = value; } public boolean isSetA() { return (this.a!= null); } /** * Ruft den Wert der b-Eigenschaft ab. * */ public double getB() { return b; } /** * Legt den Wert der b-Eigenschaft fest. * */ public void setB(double value) { this.b = value; } public boolean isSetB() { return true; } /** * Ruft den Wert der c-Eigenschaft ab. * */ public double getC() { return c; } /** * Legt den Wert der c-Eigenschaft fest. * */ public void setC(double value) { this.c = value; } public boolean isSetC() { return true; } /** * Ruft den Wert der d-Eigenschaft ab. * * @return * possible object is * {@link Double } * */ public Double getD() { return d; } /** * Legt den Wert der d-Eigenschaft fest. * * @param value * allowed object is * {@link Double } * */ public void setD(Double value) { this.d = value; } public boolean isSetD() { return (this.d!= null); } }