// // 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.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * An unrectified grid, which is a network composed of two or more sets of equally spaced parallel lines in which the members of each set intersect the members of the other sets at right angles. * * <p>Java-Klasse für GridType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="GridType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGeometryType"> * <sequence> * <element name="limits" type="{http://www.opengis.net/gml}GridLimitsType"/> * <element name="axisName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * <attribute name="dimension" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GridType", propOrder = { "limits", "axisName" }) @XmlSeeAlso({ RectifiedGridType.class }) public class GridType extends AbstractGeometryType { @XmlElement(required = true) protected GridLimitsType limits; @XmlElement(required = true) protected List<String> axisName; @XmlAttribute(name = "dimension", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger dimension; /** * Ruft den Wert der limits-Eigenschaft ab. * * @return * possible object is * {@link GridLimitsType } * */ public GridLimitsType getLimits() { return limits; } /** * Legt den Wert der limits-Eigenschaft fest. * * @param value * allowed object is * {@link GridLimitsType } * */ public void setLimits(GridLimitsType value) { this.limits = value; } public boolean isSetLimits() { return (this.limits!= null); } /** * Gets the value of the axisName 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 axisName property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAxisName().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getAxisName() { if (axisName == null) { axisName = new ArrayList<String>(); } return this.axisName; } public boolean isSetAxisName() { return ((this.axisName!= null)&&(!this.axisName.isEmpty())); } public void unsetAxisName() { this.axisName = null; } /** * Ruft den Wert der dimension-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDimension() { return dimension; } /** * Legt den Wert der dimension-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setDimension(BigInteger value) { this.dimension = value; } public boolean isSetDimension() { return (this.dimension!= null); } public void setAxisName(List<String> value) { this.axisName = value; } }