From d837354c56671472d62d5a258fd3554ba0307a2f Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Wed, 4 May 2011 17:33:44 +0200 Subject: Started implementing mock views git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@110 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/control/TurnControl.java | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/jrummikub/control') diff --git a/src/jrummikub/control/TurnControl.java b/src/jrummikub/control/TurnControl.java index c994ca1..612597a 100644 --- a/src/jrummikub/control/TurnControl.java +++ b/src/jrummikub/control/TurnControl.java @@ -1,23 +1,33 @@ package jrummikub.control; -import jrummikub.model.Hand; +import jrummikub.model.IHand; import jrummikub.model.ITable; import jrummikub.util.Event; import jrummikub.util.IEvent; import jrummikub.view.IView; public class TurnControl { - private Hand hand; + private IHand hand; private ITable table; private ITurnTimer timer; private IView view; private Event endOfTurnEvent = new Event(); - public TurnControl(Hand hand, ITable table, IView view) { + + public TurnControl(IHand hand, ITable table, IView view) { + this.hand = hand; + this.table = table; + this.view = view; + } + + /** Test only constructor **/ + TurnControl(IHand hand, ITable table, IView view, ITurnTimer testTimer) { + // TODO: change timer to interface this.hand = hand; this.table = table; this.view = view; + this.timer = testTimer; } private void sortByValue() { -- cgit v1.2.3