From 54fa9085e7bb5516b7d1ee3b11e6c730f2e1752f Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Tue, 3 May 2011 19:06:13 +0200 Subject: Table tests git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@85 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/model/Table.java | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) (limited to 'src/jrummikub/model') 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 { /** - * 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 { // TODO implement this method return false; } + } -- cgit v1.2.3