Back to project page HackWinds.
The source code is released under:
MIT License
If you think the Android project HackWinds 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.nucc.hackwinds; /* ww w . ja va2s. c o m*/ public class Forecast { public Forecast(String day, String overview, String detail) { // Call the constructor super(); this.day = day; this.overview = overview; this.detail = detail; } public String day; public String overview; public String detail; }