
de.ixilon.osm.schema.OsmBound Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overpass-api Show documentation
Show all versions of overpass-api Show documentation
Overpass API Java client library
The newest version!
//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.0 generiert
// Siehe https://eclipse-ee4j.github.io/jaxb-ri
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2021.11.11 um 08:20:20 PM CET
//
package de.ixilon.osm.schema;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java-Klasse für osm_bound complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="osm_bound">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="origin" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="box" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "osm_bound")
public class OsmBound {
@XmlAttribute(name = "origin", required = true)
protected String origin;
@XmlAttribute(name = "box", required = true)
protected String box;
/**
* Ruft den Wert der origin-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrigin() {
return origin;
}
/**
* Legt den Wert der origin-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrigin(String value) {
this.origin = value;
}
/**
* Ruft den Wert der box-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBox() {
return box;
}
/**
* Legt den Wert der box-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBox(String value) {
this.box = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy