From c9843770ddee02dca46c6ba5d81cc84da32d06d4 Mon Sep 17 00:00:00 2001 From: Bennet Gerlach Date: Wed, 4 May 2011 16:23:10 +0200 Subject: Added interfaces for model classes git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@104 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/control/TurnControl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/jrummikub/control') diff --git a/src/jrummikub/control/TurnControl.java b/src/jrummikub/control/TurnControl.java index 9bedfae..ba2c0bb 100644 --- a/src/jrummikub/control/TurnControl.java +++ b/src/jrummikub/control/TurnControl.java @@ -2,19 +2,19 @@ package jrummikub.control; import jrummikub.model.Hand; -import jrummikub.model.Table; +import jrummikub.model.ITable; import jrummikub.util.Event; import jrummikub.util.IEvent; import jrummikub.view.IView; public class TurnControl { private Hand hand; - private Table table; + private ITable table; private TurnTimer timer; private IView view; private Event endOfTurnEvent = new Event(); - public TurnControl(Hand hand, Table table, IView view) { + public TurnControl(Hand hand, ITable table, IView view) { this.hand = hand; this.table = table; this.view = view; -- cgit v1.2.3