Back to project page class_board_app.
The source code is released under:
GNU General Public License
If you think the Android project class_board_app 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.parse.starter; //www .j a v a 2 s .com public class Datamodel { String name; int value; public Datamodel(String name, int value) { this.name=name; this.value=value; } public String getName() { return name; } public int getValue() { return value; } }