Back to project page reversegeo.
The source code is released under:
MIT License
If you think the Android project reversegeo 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.zwenexsys.reverse.models; /* w w w . ja v a2 s . com*/ import com.google.gson.annotations.Expose; import java.util.ArrayList; import java.util.List; /** * Created by Ye Lin Aung on 14/11/02. */ public class Maps { @Expose private List<Result> results = new ArrayList<Result>(); @Expose private String status; /** * @return The results */ public List<Result> getResults() { return results; } /** * @param results The results */ public void setResults(List<Result> results) { this.results = results; } /** * @return The status */ public String getStatus() { return status; } /** * @param status The status */ public void setStatus(String status) { this.status = status; } }