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 www .j a v a2 s .co m*/ public class Tide { public Tide(String day) { // Call the constructor super(); this.day = day; this.dType = new String[6]; this.dValue = new String[6]; } public void addDataItem(String dataType, String dataValue, int pos) { this.dType[pos] = dataType; this.dValue[pos] = dataValue; } String[] dValue; String[] dType; String day; }