From c50fd5d7016354fbd462078e7ae296e2bc5ed86e Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Sat, 18 Jun 2011 03:23:30 +0200 Subject: Created IConnectionControl and preliminary MockConnectionControl git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@460 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/control/network/AbstractGameBeginControl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/jrummikub/control/network/AbstractGameBeginControl.java') diff --git a/src/jrummikub/control/network/AbstractGameBeginControl.java b/src/jrummikub/control/network/AbstractGameBeginControl.java index d938f58..598126a 100644 --- a/src/jrummikub/control/network/AbstractGameBeginControl.java +++ b/src/jrummikub/control/network/AbstractGameBeginControl.java @@ -21,11 +21,11 @@ import jrummikub.view.IView; public abstract class AbstractGameBeginControl { protected List connections = new ArrayList(); protected GameData gameData; - protected ConnectionControl connectionControl; + protected IConnectionControl connectionControl; protected IView view; protected Event backEvent = new Event(); - public AbstractGameBeginControl(ConnectionControl connection, IView view, + public AbstractGameBeginControl(IConnectionControl connection, IView view, final GameData gameData, SettingsMode settingsMode) { this.connectionControl = connection; this.view = view; @@ -81,7 +81,7 @@ public abstract class AbstractGameBeginControl { } protected abstract void goBack(); - + public Event getBackEvent() { return backEvent; } -- cgit v1.2.3