diff options
author | Bennet Gerlach <bennet_gerlach@web.de> | 2011-05-04 16:23:10 +0200 |
---|---|---|
committer | Bennet Gerlach <bennet_gerlach@web.de> | 2011-05-04 16:23:10 +0200 |
commit | c9843770ddee02dca46c6ba5d81cc84da32d06d4 (patch) | |
tree | 47237d564683a5b5027d8be521047819dec81f27 /src/jrummikub/control | |
parent | b5bbfc25de34e0e21237d3f6f0e72e9f2fa929ab (diff) | |
download | JRummikub-c9843770ddee02dca46c6ba5d81cc84da32d06d4.tar JRummikub-c9843770ddee02dca46c6ba5d81cc84da32d06d4.zip |
Added interfaces for model classes
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@104 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/control')
-rw-r--r-- | src/jrummikub/control/TurnControl.java | 6 |
1 files changed, 3 insertions, 3 deletions
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; |