diff options
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; } + } |