// // 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.07.23 at 10:21:30 PM MESZ // package slash.navigation.nominatim.search; 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.XmlType; /** * <p>Java class for searchresultsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="searchresultsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="place" type="{}placeType" maxOccurs="unbounded" minOccurs="0"/> * </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" /> * <attribute name="polygon" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="exclude_place_ids" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="more_url" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "searchresultsType", propOrder = { "place" }) public class SearchresultsType { protected List<PlaceType> place; @XmlAttribute protected String timestamp; @XmlAttribute protected String attribution; @XmlAttribute protected String querystring; @XmlAttribute protected String polygon; @XmlAttribute(name = "exclude_place_ids") protected String excludePlaceIds; @XmlAttribute(name = "more_url") protected String moreUrl; /** * Gets the value of the place 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 place property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPlace().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link PlaceType } * * */ public List<PlaceType> getPlace() { if (place == null) { place = new ArrayList<PlaceType>(); } return this.place; } /** * 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; } /** * Gets the value of the polygon property. * * @return * possible object is * {@link String } * */ public String getPolygon() { return polygon; } /** * Sets the value of the polygon property. * * @param value * allowed object is * {@link String } * */ public void setPolygon(String value) { this.polygon = value; } /** * Gets the value of the excludePlaceIds property. * * @return * possible object is * {@link String } * */ public String getExcludePlaceIds() { return excludePlaceIds; } /** * Sets the value of the excludePlaceIds property. * * @param value * allowed object is * {@link String } * */ public void setExcludePlaceIds(String value) { this.excludePlaceIds = value; } /** * Gets the value of the moreUrl property. * * @return * possible object is * {@link String } * */ public String getMoreUrl() { return moreUrl; } /** * Sets the value of the moreUrl property. * * @param value * allowed object is * {@link String } * */ public void setMoreUrl(String value) { this.moreUrl = value; } }