// // 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.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * A container for an array of curve segments. * * <p>Java-Klasse für CurveSegmentArrayPropertyType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="CurveSegmentArrayPropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/gml}_CurveSegment" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CurveSegmentArrayPropertyType", propOrder = { "_CurveSegment" }) public class CurveSegmentArrayPropertyType { @XmlElementRef(name = "_CurveSegment", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false) protected List<JAXBElement<? extends AbstractCurveSegmentType>> _CurveSegment; /** * Gets the value of the curveSegment 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 curveSegment property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_CurveSegment().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link OffsetCurveType }{@code >} * {@link JAXBElement }{@code <}{@link ArcType }{@code >} * {@link JAXBElement }{@code <}{@link BezierType }{@code >} * {@link JAXBElement }{@code <}{@link LineStringSegmentType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractCurveSegmentType }{@code >} * {@link JAXBElement }{@code <}{@link ArcByCenterPointType }{@code >} * {@link JAXBElement }{@code <}{@link CircleType }{@code >} * {@link JAXBElement }{@code <}{@link ArcStringType }{@code >} * {@link JAXBElement }{@code <}{@link CubicSplineType }{@code >} * {@link JAXBElement }{@code <}{@link BSplineType }{@code >} * {@link JAXBElement }{@code <}{@link ClothoidType }{@code >} * {@link JAXBElement }{@code <}{@link GeodesicStringType }{@code >} * {@link JAXBElement }{@code <}{@link ArcByBulgeType }{@code >} * {@link JAXBElement }{@code <}{@link ArcStringByBulgeType }{@code >} * {@link JAXBElement }{@code <}{@link CircleByCenterPointType }{@code >} * {@link JAXBElement }{@code <}{@link GeodesicType }{@code >} * * */ public List<JAXBElement<? extends AbstractCurveSegmentType>> get_CurveSegment() { if (_CurveSegment == null) { _CurveSegment = new ArrayList<JAXBElement<? extends AbstractCurveSegmentType>>(); } return this._CurveSegment; } public boolean isSet_CurveSegment() { return ((this._CurveSegment!= null)&&(!this._CurveSegment.isEmpty())); } public void unset_CurveSegment() { this._CurveSegment = null; } public void set_CurveSegment(List<JAXBElement<? extends AbstractCurveSegmentType>> value) { this._CurveSegment = value; } }