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.j a v a 2 s . c o m import com.google.gson.annotations.Expose; /** * Created by Ye Lin Aung on 14/11/02. */ public class Viewport { @Expose private Northeast_ northeast; @Expose private Southwest_ southwest; /** * @return The northeast */ public Northeast_ getNortheast() { return northeast; } /** * @param northeast The northeast */ public void setNortheast(Northeast_ northeast) { this.northeast = northeast; } /** * @return The southwest */ public Southwest_ getSouthwest() { return southwest; } /** * @param southwest The southwest */ public void setSouthwest(Southwest_ southwest) { this.southwest = southwest; } }