From 9cf3dc09ae319b6e627a4c52923bbc325137ef34 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 29 May 2011 15:50:30 +0200 Subject: Implement score panel git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@298 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/view/IScorePanel.java | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/jrummikub/view/IScorePanel.java (limited to 'src/jrummikub/view/IScorePanel.java') 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 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 players); + + /** + * Updates the score display + */ + void update(); +} -- cgit v1.2.3