Back to project page Common-Library.
The source code is released under:
Apache License
If you think the Android project Common-Library 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.morgan.library.model; /*w w w . j a va 2 s.c om*/ /** * {@link com.morgan.library.service.WeatherManager}??????????model * * @author Morgan.Ji * */ public class Weather { private int tempature = Integer.MAX_VALUE; private WeatherType type = WeatherType.SUNNY; public int getTempature() { return tempature; } public void setTempature(int tempature) { this.tempature = tempature; } public WeatherType getType() { return type; } public void setType(WeatherType type) { this.type = type; } @Override public String toString() { return "weather type: " + type + " tempature: " + tempature; } }