Back to project page android-json-http.
The source code is released under:
Apache License
If you think the Android project android-json-http listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.response; // ww w .j a va 2 s . c o m import java.util.ArrayList; import com.example.response.table.GeocodeTable; import com.open.jsonhttp.ResponseBean; /** * geocode api ???????????? * * @author yinghui.hong */ public class GeocodeResBean extends ResponseBean { private ArrayList<GeocodeTable> results; public ArrayList<GeocodeTable> getResults() { return results; } public void setResults(ArrayList<GeocodeTable> results) { this.results = results; } @Override public String toString() { return "GencodeResBean [results=" + results + "]"; } }