/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.wmc.xml.v110; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for BoundingBoxType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BoundingBoxType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="SRS" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="maxx" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="maxy" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="minx" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="miny" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BoundingBoxType") public class BoundingBoxType { @XmlAttribute(name = "SRS", required = true) protected String srs; @XmlAttribute(required = true) protected BigDecimal maxx; @XmlAttribute(required = true) protected BigDecimal maxy; @XmlAttribute(required = true) protected BigDecimal minx; @XmlAttribute(required = true) protected BigDecimal miny; /** * Gets the value of the srs property. * * @return * possible object is * {@link String } * */ public String getSRS() { return srs; } /** * Sets the value of the srs property. * * @param value * allowed object is * {@link String } * */ public void setSRS(final String value) { this.srs = value; } /** * Gets the value of the maxx property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMaxx() { return maxx; } /** * Sets the value of the maxx property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMaxx(final BigDecimal value) { this.maxx = value; } /** * Gets the value of the maxy property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMaxy() { return maxy; } /** * Sets the value of the maxy property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMaxy(final BigDecimal value) { this.maxy = value; } /** * Gets the value of the minx property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMinx() { return minx; } /** * Sets the value of the minx property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMinx(final BigDecimal value) { this.minx = value; } /** * Gets the value of the miny property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMiny() { return miny; } /** * Sets the value of the miny property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMiny(final BigDecimal value) { this.miny = value; } }