Back to project page android-cd-travis-example.
The source code is released under:
MIT License
If you think the Android project android-cd-travis-example 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.ruenzuo.weatherapp.pojos; // w w w. j av a 2 s. co m import java.io.Serializable; import org.codehaus.jackson.annotate.JsonIgnoreProperties; @JsonIgnoreProperties(ignoreUnknown = true) public class Coordinate implements Serializable { /** * */ private static final long serialVersionUID = -6606312772708884804L; private float lon; private float lat; public float getLon() { return lon; } public void setLon(float lon) { this.lon = lon; } public float getLat() { return lat; } public void setLat(float lat) { this.lat = lat; } }