FeatureCollectionTop50Type.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
  3. // Implementation, v2.2.8-b130911.1802
  4. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  5. // Any modifications to this file will be lost upon recompilation of the source schema.
  6. // Generated on: 2018.12.31 at 10:32:54 AM CET
  7. //

  8. package nl.b3p.topnl.top50nl;

  9. import java.util.ArrayList;
  10. import java.util.List;
  11. import javax.xml.bind.annotation.XmlAccessType;
  12. import javax.xml.bind.annotation.XmlAccessorType;
  13. import javax.xml.bind.annotation.XmlElement;
  14. import javax.xml.bind.annotation.XmlType;

  15. /**
  16.  * Java class for FeatureCollectionTop50Type complex type.
  17.  *
  18.  * <p>The following schema fragment specifies the expected content contained within this class.
  19.  *
  20.  * <pre>
  21.  * &lt;complexType name="FeatureCollectionTop50Type">
  22.  *   &lt;complexContent>
  23.  *     &lt;extension base="{http://www.opengis.net/gml/3.2}AbstractGMLType">
  24.  *       &lt;sequence>
  25.  *         &lt;element name="FeatureMember" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
  26.  *       &lt;/sequence>
  27.  *     &lt;/extension>
  28.  *   &lt;/complexContent>
  29.  * &lt;/complexType>
  30.  * </pre>
  31.  */
  32. @XmlAccessorType(XmlAccessType.FIELD)
  33. @XmlType(
  34.     name = "FeatureCollectionTop50Type",
  35.     namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top50nl/1.1.1",
  36.     propOrder = {"featureMember"})
  37. public class FeatureCollectionTop50Type extends AbstractGMLType {

  38.   @XmlElement(name = "FeatureMember")
  39.   protected List<Object> featureMember;

  40.   /**
  41.    * Gets the value of the featureMember property.
  42.    *
  43.    * <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
  44.    * modification you make to the returned list will be present inside the JAXB object. This is why
  45.    * there is not a <CODE>set</CODE> method for the featureMember property.
  46.    *
  47.    * <p>For example, to add a new item, do as follows:
  48.    *
  49.    * <pre>
  50.    *    getFeatureMember().add(newItem);
  51.    * </pre>
  52.    *
  53.    * <p>Objects of the following type(s) are allowed in the list {@link Object }
  54.    */
  55.   public List<Object> getFeatureMember() {
  56.     if (featureMember == null) {
  57.       featureMember = new ArrayList<Object>();
  58.     }
  59.     return this.featureMember;
  60.   }
  61. }