/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2012, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.gml.xml.v321; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ClothoidType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ClothoidType"> * <complexContent> * <extension base="{http://www.opengis.net/gml/3.2}AbstractCurveSegmentType"> * <sequence> * <element name="refLocation"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/gml/3.2}AffinePlacement"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="scaleFactor" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="startParameter" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="endParameter" type="{http://www.w3.org/2001/XMLSchema}double"/> * </sequence> * <attribute name="interpolation" type="{http://www.opengis.net/gml/3.2}CurveInterpolationType" fixed="clothoid" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClothoidType", propOrder = { "refLocation", "scaleFactor", "startParameter", "endParameter" }) public class ClothoidType extends AbstractCurveSegmentType { @XmlElement(required = true) private ClothoidType.RefLocation refLocation; @XmlElement(required = true) private BigDecimal scaleFactor; private double startParameter; private double endParameter; @XmlAttribute private CurveInterpolationType interpolation; /** * Gets the value of the refLocation property. * * @return * possible object is * {@link ClothoidType.RefLocation } * */ public ClothoidType.RefLocation getRefLocation() { return refLocation; } /** * Sets the value of the refLocation property. * * @param value * allowed object is * {@link ClothoidType.RefLocation } * */ public void setRefLocation(ClothoidType.RefLocation value) { this.refLocation = value; } /** * Gets the value of the scaleFactor property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getScaleFactor() { return scaleFactor; } /** * Sets the value of the scaleFactor property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setScaleFactor(BigDecimal value) { this.scaleFactor = value; } /** * Gets the value of the startParameter property. * */ public double getStartParameter() { return startParameter; } /** * Sets the value of the startParameter property. * */ public void setStartParameter(double value) { this.startParameter = value; } /** * Gets the value of the endParameter property. * */ public double getEndParameter() { return endParameter; } /** * Sets the value of the endParameter property. * */ public void setEndParameter(double value) { this.endParameter = value; } /** * Gets the value of the interpolation property. * * @return * possible object is * {@link CurveInterpolationType } * */ public CurveInterpolationType getInterpolation() { if (interpolation == null) { return CurveInterpolationType.CLOTHOID; } else { return interpolation; } } /** * Sets the value of the interpolation property. * * @param value * allowed object is * {@link CurveInterpolationType } * */ public void setInterpolation(CurveInterpolationType value) { this.interpolation = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/gml/3.2}AffinePlacement"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "affinePlacement" }) public static class RefLocation { @XmlElement(name = "AffinePlacement", required = true) private AffinePlacementType affinePlacement; /** * Gets the value of the affinePlacement property. * * @return * possible object is * {@link AffinePlacementType } * */ public AffinePlacementType getAffinePlacement() { return affinePlacement; } /** * Sets the value of the affinePlacement property. * * @param value * allowed object is * {@link AffinePlacementType } * */ public void setAffinePlacement(AffinePlacementType value) { this.affinePlacement = value; } } }