summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/control
diff options
context:
space:
mode:
authorJannis Harder <harder@informatik.uni-luebeck.de>2011-05-04 17:33:44 +0200
committerJannis Harder <harder@informatik.uni-luebeck.de>2011-05-04 17:33:44 +0200
commitd837354c56671472d62d5a258fd3554ba0307a2f (patch)
tree9eb3cd278283afda51f7d25f0fa411f0e25564f6 /src/jrummikub/control
parent8199274c9d4158a4bbf5361f3506f144e75344c1 (diff)
downloadJRummikub-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/control')
-rw-r--r--src/jrummikub/control/TurnControl.java16
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() {