Back to project page ZillowApiForAndroid.
The source code is released under:
MIT License
If you think the Android project ZillowApiForAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /*from w ww. j ava2s . com*/ */ package com.archerabi.android.zillow.api.model; import org.simpleframework.xml.Element; import org.simpleframework.xml.Path; import org.simpleframework.xml.Root; /** * @author "Abhijith Reddy" * */ @Root(strict = false) public class RegionChart { @Element @Path("response") private String url; /** * @return the url */ public String getUrl() { return url; } /** * @param url * the url to set */ public void setUrl(String url) { this.url = url; } }