diff options
author | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-05-04 17:33:44 +0200 |
---|---|---|
committer | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-05-04 17:33:44 +0200 |
commit | d837354c56671472d62d5a258fd3554ba0307a2f (patch) | |
tree | 9eb3cd278283afda51f7d25f0fa411f0e25564f6 /src/jrummikub | |
parent | 8199274c9d4158a4bbf5361f3506f144e75344c1 (diff) | |
download | JRummikub-d837354c56671472d62d5a258fd3554ba0307a2f.tar JRummikub-d837354c56671472d62d5a258fd3554ba0307a2f.zip |
Started implementing mock views
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@110 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub')
-rw-r--r-- | src/jrummikub/control/TurnControl.java | 16 |
1 files changed, 13 insertions, 3 deletions
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() { |