summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IView.java
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2011-05-29 15:50:30 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2011-05-29 15:50:30 +0200
commit9cf3dc09ae319b6e627a4c52923bbc325137ef34 (patch)
tree73d6391aa1fb286770e0cdec1c502fc63ad61ae2 /src/jrummikub/view/IView.java
parenteea456991cc9e3d29ab51e8907b0374a61c77a96 (diff)
downloadJRummikub-9cf3dc09ae319b6e627a4c52923bbc325137ef34.tar
JRummikub-9cf3dc09ae319b6e627a4c52923bbc325137ef34.zip
Implement score panel
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@298 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/view/IView.java')
-rw-r--r--src/jrummikub/view/IView.java18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/jrummikub/view/IView.java b/src/jrummikub/view/IView.java
index 6a96213..3e33e44 100644
--- a/src/jrummikub/view/IView.java
+++ b/src/jrummikub/view/IView.java
@@ -17,6 +17,13 @@ public interface IView {
public ISettingsPanel getSettingsPanel();
/**
+ * Returns the score panel
+ *
+ * @return the score panel
+ */
+ public IScorePanel getScorePanel();
+
+ /**
* Returns the table
*
* @return the table
@@ -91,7 +98,16 @@ public interface IView {
/**
* Shows or hides the game settings panel
*
- * @param show specifies if the panel shall be shown or hidden
+ * @param show
+ * specifies if the panel shall be shown or hidden
*/
void showSettingsPanel(boolean show);
+
+ /**
+ * Shows or hides the score panel
+ *
+ * @param show
+ * specifies if the panel shall be shown or hidden
+ */
+ void showScorePanel(boolean show);
}