AbstractFeatureMemberType.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: 2016.12.07 at 02:40:39 PM CET
//
package nl.b3p.topnl.top100nl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* To create a collection of GML features, a property type shall be derived by extension from
* gml:AbstractFeatureMemberType. By default, this abstract property type does not imply any
* ownership of the features in the collection. The owns attribute of gml:OwnershipAttributeGroup
* may be used on a property element instance to assert ownership of a feature in the collection. A
* collection shall not own a feature already owned by another object.
*
* <p>Java class for AbstractFeatureMemberType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AbstractFeatureMemberType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* <attGroup ref="{http://www.opengis.net/gml/3.2}OwnershipAttributeGroup"/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstractFeatureMemberType")
@XmlSeeAlso({FeatureMemberType.class})
public abstract class AbstractFeatureMemberType {
@XmlAttribute(name = "owns")
protected Boolean owns;
/**
* Gets the value of the owns property.
*
* @return possible object is {@link Boolean }
*/
public boolean isOwns() {
if (owns == null) {
return false;
} else {
return owns;
}
}
/**
* Sets the value of the owns property.
*
* @param value allowed object is {@link Boolean }
*/
public void setOwns(Boolean value) {
this.owns = value;
}
}