// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // 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: 2016.08.09 at 09:15:46 PM MESZ // package slash.navigation.nominatim.reverse; 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.XmlType; /** * <p>Java class for reversegeocodeType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="reversegeocodeType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="result" type="{}resultType"/> * <element name="addressparts" type="{}addresspartsType"/> * </sequence> * <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}string"/> * <attribute name="attribution" type="{http://www.w3.org/2001/XMLSchema}string"/> * <attribute name="querystring" type="{http://www.w3.org/2001/XMLSchema}string"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "reversegeocodeType", propOrder = { "result", "addressparts" }) public class ReversegeocodeType { @XmlElement(required = true) protected ResultType result; @XmlElement(required = true) protected AddresspartsType addressparts; @XmlAttribute protected String timestamp; @XmlAttribute protected String attribution; @XmlAttribute protected String querystring; /** * Gets the value of the result property. * * @return * possible object is * {@link ResultType } * */ public ResultType getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link ResultType } * */ public void setResult(ResultType value) { this.result = value; } /** * Gets the value of the addressparts property. * * @return * possible object is * {@link AddresspartsType } * */ public AddresspartsType getAddressparts() { return addressparts; } /** * Sets the value of the addressparts property. * * @param value * allowed object is * {@link AddresspartsType } * */ public void setAddressparts(AddresspartsType value) { this.addressparts = value; } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link String } * */ public String getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link String } * */ public void setTimestamp(String value) { this.timestamp = value; } /** * Gets the value of the attribution property. * * @return * possible object is * {@link String } * */ public String getAttribution() { return attribution; } /** * Sets the value of the attribution property. * * @param value * allowed object is * {@link String } * */ public void setAttribution(String value) { this.attribution = value; } /** * Gets the value of the querystring property. * * @return * possible object is * {@link String } * */ public String getQuerystring() { return querystring; } /** * Sets the value of the querystring property. * * @param value * allowed object is * {@link String } * */ public void setQuerystring(String value) { this.querystring = value; } }