summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IHandPanel.java
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2011-05-16 20:49:11 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2011-05-16 20:49:11 +0200
commit9ad7f0822eb66972f740fb3da58c85d7a555d549 (patch)
tree884c67b386014e8bf7f9a0d20c75bd3203493053 /src/jrummikub/view/IHandPanel.java
parentbe4b1b41200f5383850db3b20fb9aabf38374010 (diff)
downloadJRummikub-9ad7f0822eb66972f740fb3da58c85d7a555d549.tar
JRummikub-9ad7f0822eb66972f740fb3da58c85d7a555d549.zip
Add hand row controls to view
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@241 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/view/IHandPanel.java')
-rw-r--r--src/jrummikub/view/IHandPanel.java15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/jrummikub/view/IHandPanel.java b/src/jrummikub/view/IHandPanel.java
index 3a76780..ea08f86 100644
--- a/src/jrummikub/view/IHandPanel.java
+++ b/src/jrummikub/view/IHandPanel.java
@@ -17,18 +17,7 @@ public interface IHandPanel extends IStonePanel, IClickable {
public void setStones(Iterable<Pair<Stone, Position>> stones);
/**
- * Set the number of stones that fit on the hand horizontally
- *
- * @param width
- * number of stones
- */
- public void setHandWidth(int width);
-
- /**
- * Set the number of stones that fit on the hand vertically
- *
- * @param height
- * number of stones
+ * Resets the rows currently displayed
*/
- public void setHandHeight(int height);
+ void resetCurrentRow();
}