/* * Copyright 2013 Serdar. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 // 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: 2013.03.14 at 08:42:30 PM MEZ // package de.fub.gpxmodule.xml; 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; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * * Two lat/lon pairs defining the extent of an element. * * * <p> * Java class for boundsType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="boundsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="minlat" use="required" type="{http://www.topografix.com/GPX/1/1}latitudeType" /> * <attribute name="minlon" use="required" type="{http://www.topografix.com/GPX/1/1}longitudeType" /> * <attribute name="maxlat" use="required" type="{http://www.topografix.com/GPX/1/1}latitudeType" /> * <attribute name="maxlon" use="required" type="{http://www.topografix.com/GPX/1/1}longitudeType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "boundsType") public class Bounds { @XmlAttribute(name = "minlat", required = true) @XmlJavaTypeAdapter(Adapter6.class) protected BigDecimal minlat; @XmlAttribute(name = "minlon", required = true) @XmlJavaTypeAdapter(Adapter5.class) protected BigDecimal minlon; @XmlAttribute(name = "maxlat", required = true) @XmlJavaTypeAdapter(Adapter6.class) protected BigDecimal maxlat; @XmlAttribute(name = "maxlon", required = true) @XmlJavaTypeAdapter(Adapter5.class) protected BigDecimal maxlon; /** * Gets the value of the minlat property. * * @return possible object is {@link String } * */ public BigDecimal getMinlat() { return minlat; } /** * Sets the value of the minlat property. * * @param value allowed object is {@link String } * */ public void setMinlat(BigDecimal value) { this.minlat = value; } /** * Gets the value of the minlon property. * * @return possible object is {@link String } * */ public BigDecimal getMinlon() { return minlon; } /** * Sets the value of the minlon property. * * @param value allowed object is {@link String } * */ public void setMinlon(BigDecimal value) { this.minlon = value; } /** * Gets the value of the maxlat property. * * @return possible object is {@link String } * */ public BigDecimal getMaxlat() { return maxlat; } /** * Sets the value of the maxlat property. * * @param value allowed object is {@link String } * */ public void setMaxlat(BigDecimal value) { this.maxlat = value; } /** * Gets the value of the maxlon property. * * @return possible object is {@link String } * */ public BigDecimal getMaxlon() { return maxlon; } /** * Sets the value of the maxlon property. * * @param value allowed object is {@link String } * */ public void setMaxlon(BigDecimal value) { this.maxlon = value; } }