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.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/jrummikub/view/IScorePanel.java b/src/jrummikub/view/IScorePanel.java
index be0b912..22e27fe 100644
--- a/src/jrummikub/view/IScorePanel.java
+++ b/src/jrummikub/view/IScorePanel.java
@@ -10,24 +10,27 @@ public interface IScorePanel {
/**
* Sets the scores of the played rounds
*
- * @param scores the round scores
+ * @param scores
+ * the round scores
*/
public void setScores(Iterable<Score> scores);
-
+
/**
* Sets the accumulated scores to display
*
- * @param accumulatedScore the accumulated score
+ * @param accumulatedScore
+ * the accumulated score
*/
public void setAccumulatedScore(Score accumulatedScore);
-
+
/**
* Sets the player list to display
*
- * @param players the player list
+ * @param players
+ * the player list
*/
void setPlayers(Iterable<PlayerSettings> players);
-
+
/**
* Updates the score display
*/