Back to project page Briscola.
The source code is released under:
GNU General Public License
If you think the Android project Briscola 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.gmail.craptik.briscola; /*from w w w . j av a 2 s . c o m*/ public class Player { private int id; private String name; private int score; Player() { id = 0; name = ""; score = 0; } Player(int id, String name, int score) { this.id = id; this.name = name; this.score = score; } Player(String name) { id = 0; this.name = name; score = 0; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getTotalScore() { return score; } public void setTotalScore(int score) { this.score = score; } }