diff options
author | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-05-03 19:06:13 +0200 |
---|---|---|
committer | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-05-03 19:06:13 +0200 |
commit | 54fa9085e7bb5516b7d1ee3b11e6c730f2e1752f (patch) | |
tree | 9c89c3dc19dc6122f436c7691d9346a87dded43c /src/jrummikub/model | |
parent | 88292e9304afd644db9f54a526ecbe9bae314dd6 (diff) | |
download | JRummikub-54fa9085e7bb5516b7d1ee3b11e6c730f2e1752f.tar JRummikub-54fa9085e7bb5516b7d1ee3b11e6c730f2e1752f.zip |
Table tests
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@85 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/model')
-rw-r--r-- | src/jrummikub/model/Table.java | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/src/jrummikub/model/Table.java b/src/jrummikub/model/Table.java index b1e1a42..59ef01d 100644 --- a/src/jrummikub/model/Table.java +++ b/src/jrummikub/model/Table.java @@ -5,27 +5,13 @@ package jrummikub.model; public class Table extends StoneTray<StoneSet> { /** - * Removes {@link Stone} from the Table and returns it + * Removes {@link Stone} from the Table * - * @param position - * {@link Position} of the selected {@link Stone} + * @param stone + * stone to pick up */ - public Stone pickUpStone(Position position) { + public void pickUpStone(Stone stone) { // TODO implement this method - return null; - } - - /** - * Removes a part of a {@link StoneSet} from the Table and returns it - * - * @param from - * Start {@link Position} of the range - * @param to - * End {@link Position} of the range - */ - public StoneSet pickUpRange(Position from, Position to) { - // TODO implement this method - return null; } /** Tests the Table for rule conflicts by checking all the {@link StoneSet} */ @@ -33,4 +19,5 @@ public class Table extends StoneTray<StoneSet> { // TODO implement this method return false; } + } |