AbstractFeatureType.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
// Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.12.08 at 10:18:04 AM CET
//
package nl.b3p.topnl.top250nl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* The basic feature model is given by the gml:AbstractFeatureType. The content model for
* gml:AbstractFeatureType adds two specific properties suitable for geographic features to the
* content model defined in gml:AbstractGMLType. The value of the gml:boundedBy property describes
* an envelope that encloses the entire feature instance, and is primarily useful for supporting
* rapid searching for features that occur in a particular location. The value of the gml:location
* property describes the extent, position or relative location of the feature.
*
* <p>Java class for AbstractFeatureType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AbstractFeatureType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml/3.2}AbstractGMLType">
* <sequence>
* <element ref="{http://www.opengis.net/gml/3.2}boundedBy" minOccurs="0"/>
* <element ref="{http://www.opengis.net/gml/3.2}location" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
name = "AbstractFeatureType",
propOrder = {"boundedBy", "location"})
@XmlSeeAlso({Top250NlObjectType.class})
public abstract class AbstractFeatureType extends AbstractGMLType {
@XmlElement(nillable = true)
protected BoundingShapeType boundedBy;
protected LocationPropertyType location;
/**
* Gets the value of the boundedBy property.
*
* @return possible object is {@link BoundingShapeType }
*/
public BoundingShapeType getBoundedBy() {
return boundedBy;
}
/**
* Sets the value of the boundedBy property.
*
* @param value allowed object is {@link BoundingShapeType }
*/
public void setBoundedBy(BoundingShapeType value) {
this.boundedBy = value;
}
/**
* Gets the value of the location property.
*
* @return possible object is {@link LocationPropertyType }
*/
public LocationPropertyType getLocation() {
return location;
}
/**
* Sets the value of the location property.
*
* @param value allowed object is {@link LocationPropertyType }
*/
public void setLocation(LocationPropertyType value) {
this.location = value;
}
}