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; //from w w w . ja v a 2s. co m public class Condition { public Condition(String date, String minBreak, String maxBreak, String windSpeed, String windDeg, String windDir, String swellHeight, String swellPeriod, String swellDeg) { // Call the constructor super(); this.date = date; this.minBreak = minBreak; this.maxBreak = maxBreak; this.windSpeed = windSpeed; this.windDeg = windDeg; this.windDir = windDir; this.swellHeight = swellHeight; this.swellPeriod = swellPeriod; this.swellDeg = swellDeg; } public String date; public String minBreak; public String maxBreak; public String windSpeed; public String windDeg; public String windDir; public String swellHeight; public String swellPeriod; public String swellDeg; }