// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import net.opengis.citygml.appearance._1.AppearancePropertyType; /** * A feature collection contains zero or more features. * * <p>Java-Klasse für AbstractFeatureCollectionType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractFeatureCollectionType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractFeatureType"> * <sequence> * <element ref="{http://www.opengis.net/gml}featureMember" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml}featureMembers" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractFeatureCollectionType", propOrder = { "featureMember", "featureMembers" }) @XmlSeeAlso({ FeatureCollectionType.class, net.opengis.citygml._1.CityModelType.class, net.opengis.citygml._2.CityModelType.class }) public abstract class AbstractFeatureCollectionType extends AbstractFeatureType { @XmlElementRef(name = "featureMember", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false) protected List<JAXBElement<? extends FeaturePropertyType>> featureMember; protected FeatureArrayPropertyType featureMembers; /** * Gets the value of the featureMember 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 featureMember property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFeatureMember().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link FeaturePropertyType }{@code >} * {@link JAXBElement }{@code <}{@link AppearancePropertyType }{@code >} * {@link JAXBElement }{@code <}{@link FeaturePropertyType }{@code >} * {@link JAXBElement }{@code <}{@link FeaturePropertyType }{@code >} * {@link JAXBElement }{@code <}{@link FeaturePropertyType }{@code >} * * */ public List<JAXBElement<? extends FeaturePropertyType>> getFeatureMember() { if (featureMember == null) { featureMember = new ArrayList<JAXBElement<? extends FeaturePropertyType>>(); } return this.featureMember; } public boolean isSetFeatureMember() { return ((this.featureMember!= null)&&(!this.featureMember.isEmpty())); } public void unsetFeatureMember() { this.featureMember = null; } /** * Ruft den Wert der featureMembers-Eigenschaft ab. * * @return * possible object is * {@link FeatureArrayPropertyType } * */ public FeatureArrayPropertyType getFeatureMembers() { return featureMembers; } /** * Legt den Wert der featureMembers-Eigenschaft fest. * * @param value * allowed object is * {@link FeatureArrayPropertyType } * */ public void setFeatureMembers(FeatureArrayPropertyType value) { this.featureMembers = value; } public boolean isSetFeatureMembers() { return (this.featureMembers!= null); } public void setFeatureMember(List<JAXBElement<? extends FeaturePropertyType>> value) { this.featureMember = value; } }