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 ava 2 s. c om import java.io.Serializable; import org.codehaus.jackson.annotate.JsonIgnoreProperties; @JsonIgnoreProperties(ignoreUnknown = true) public class Forecast implements Serializable { /** * */ private static final long serialVersionUID = -6029747225648653014L; private float temp; private float pressure; private float humidity; public float getTemp() { return temp; } public void setTemp(float temp) { this.temp = temp; } public float getPressure() { return pressure; } public void setPressure(float pressure) { this.pressure = pressure; } public float getHumidity() { return humidity; } public void setHumidity(float humidity) { this.humidity = humidity; } }