Back to project page HRForecast-WFM.
The source code is released under:
Copyright 2014 Ahmed Shafei
If you think the Android project HRForecast-WFM 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 de.hrf.workforcemanagement; /*ww w. j av a 2 s . com*/ public class RowModel { String name; int value; /* 0 -> checkbox disable, 1 -> checkbox enable */ RowModel(String name, int value) { this.name = name; this.value = value; } public String getName() { return this.name; } public int getValue() { return this.value; } }