summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IScorePanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/view/IScorePanel.java')
-rw-r--r--src/jrummikub/view/IScorePanel.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/jrummikub/view/IScorePanel.java b/src/jrummikub/view/IScorePanel.java
new file mode 100644
index 0000000..be0b912
--- /dev/null
+++ b/src/jrummikub/view/IScorePanel.java
@@ -0,0 +1,35 @@
+package jrummikub.view;
+
+import jrummikub.model.PlayerSettings;
+import jrummikub.model.Score;
+
+/**
+ * The panel the scores are displayed in
+ */
+public interface IScorePanel {
+ /**
+ * Sets the scores of the played rounds
+ *
+ * @param scores the round scores
+ */
+ public void setScores(Iterable<Score> scores);
+
+ /**
+ * Sets the accumulated scores to display
+ *
+ * @param accumulatedScore the accumulated score
+ */
+ public void setAccumulatedScore(Score accumulatedScore);
+
+ /**
+ * Sets the player list to display
+ *
+ * @param players the player list
+ */
+ void setPlayers(Iterable<PlayerSettings> players);
+
+ /**
+ * Updates the score display
+ */
+ void update();
+}