package Q8; public class Point { private int player; private int score; private static final int PLAYER1 = 0; private static final int PLAYER2 = 1; private String stroke; public Point(int player, String stroke, int value) { this.player = player; this.stroke = stroke; } public int getPlayer() { return 0; } public int getScore() { return 0; } public String getStroke() { return ""; } }