Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/MultiModuleSingleSrc/main/src/org/litesoft/sandbox/multimodule/client/module/groupfront/left/LeftActivity.java

Diff revisions: vs.
  @@ -5,26 +5,22 @@
5 5 import org.litesoft.sandbox.multimodule.client.foundation.places.*;
6 6 import org.litesoft.sandbox.multimodule.client.foundation.support.*;
7 7
8 - public class LeftActivity extends AbstractActivity<LeftView> implements LeftView.Presenter
9 - {
8 + public class LeftActivity extends AbstractActivity<LeftView> implements LeftView.Presenter {
10 9 private ClientFactory mClientFactory;
11 10
12 - public LeftActivity( ClientFactory pClientFactory, LeftView pView, PlaceLeft pPlace )
13 - {
11 + public LeftActivity( ClientFactory pClientFactory, LeftView pView, PlaceLeft pPlace ) {
14 12 super( pView, pClientFactory );
15 13 mClientFactory = pClientFactory;
16 14 pView.setLuckyId( (pPlace != null) ? pPlace.getLuckyId() : null );
17 15 }
18 16
19 17 @Override
20 - protected void start()
21 - {
18 + protected void start() {
22 19 mClientFactory.adjustDieFor( EnumPlaces.Left );
23 20 }
24 21
25 22 @Override
26 - public Die getDie()
27 - {
23 + public Die getDie() {
28 24 return mClientFactory.getDie();
29 25 }
30 26 }