// // 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.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * All geometry elements are derived directly or indirectly from this abstract supertype. A geometry element may * have an identifying attribute ("gml:id"), a name (attribute "name") and a description (attribute "description"). It may be associated * with a spatial reference system (attribute "srsName"). The following rules shall be adhered: - Every geometry type shall derive * from this abstract type. - Every geometry element (i.e. an element of a geometry type) shall be directly or indirectly in the * substitution group of _Geometry. * * <p>Java-Klasse für AbstractGeometryType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractGeometryType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGMLType"> * <attGroup ref="{http://www.opengis.net/gml}SRSReferenceGroup"/> * <attribute name="gid" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractGeometryType") @XmlSeeAlso({ GeometricComplexType.class, AbstractRingType.class, GridType.class, AbstractGeometricAggregateType.class, AbstractGeometricPrimitiveType.class }) public abstract class AbstractGeometryType extends AbstractGMLType { @XmlAttribute(name = "gid") protected String gid; @XmlAttribute(name = "srsName") @XmlSchemaType(name = "anyURI") protected String srsName; @XmlAttribute(name = "srsDimension") @XmlSchemaType(name = "positiveInteger") protected BigInteger srsDimension; @XmlAttribute(name = "axisLabels") protected List<String> axisLabels; @XmlAttribute(name = "uomLabels") protected List<String> uomLabels; /** * Ruft den Wert der gid-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getGid() { return gid; } /** * Legt den Wert der gid-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setGid(String value) { this.gid = value; } public boolean isSetGid() { return (this.gid!= null); } /** * Ruft den Wert der srsName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSrsName() { return srsName; } /** * Legt den Wert der srsName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSrsName(String value) { this.srsName = value; } public boolean isSetSrsName() { return (this.srsName!= null); } /** * Ruft den Wert der srsDimension-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSrsDimension() { return srsDimension; } /** * Legt den Wert der srsDimension-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setSrsDimension(BigInteger value) { this.srsDimension = value; } public boolean isSetSrsDimension() { return (this.srsDimension!= null); } /** * Gets the value of the axisLabels 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 axisLabels property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAxisLabels().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getAxisLabels() { if (axisLabels == null) { axisLabels = new ArrayList<String>(); } return this.axisLabels; } public boolean isSetAxisLabels() { return ((this.axisLabels!= null)&&(!this.axisLabels.isEmpty())); } public void unsetAxisLabels() { this.axisLabels = null; } /** * Gets the value of the uomLabels 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 uomLabels property. * * <p> * For example, to add a new item, do as follows: * <pre> * getUomLabels().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getUomLabels() { if (uomLabels == null) { uomLabels = new ArrayList<String>(); } return this.uomLabels; } public boolean isSetUomLabels() { return ((this.uomLabels!= null)&&(!this.uomLabels.isEmpty())); } public void unsetUomLabels() { this.uomLabels = null; } public void setAxisLabels(List<String> value) { this.axisLabels = value; } public void setUomLabels(List<String> value) { this.uomLabels = value; } }