Back to project page Android-FactsGame.
The source code is released under:
Apache License
If you think the Android project Android-FactsGame 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 ie.iamshanedoyle.factsgame.models; /*from w w w .j a va2 s . c o m*/ /** * This is a score object. */ public class Score { private String user; private int value; public Score(String user, int value) { this.user = user; this.value = value; } public String getUser() { return user; } public void setUser(String user) { this.user = user; } public int getValue() { return value; } public void setValue(int value) { this.value = value; } }