Subversion Repository Public Repository

litesoft

Diff Revisions 539 vs 540 for /trunk/GWT_Sandbox/MultiModule/groupFront/src/org/litesoft/sandbox/multimodule/groupfront/client/front/FrontActivity.java

Diff revisions: vs.
  @@ -1,12 +1,13 @@
1 1 package org.litesoft.sandbox.multimodule.groupfront.client.front;
2 2
3 - import org.litesoft.sandbox.multimodule.common.client.infrastructure.*;
4 - import org.litesoft.sandbox.multimodule.common.client.places.*;
3 + import org.litesoft.sandbox.multimodule.foundation.client.*;
4 + import org.litesoft.sandbox.multimodule.foundation.client.places.*;
5 5
6 6 import com.google.gwt.activity.shared.*;
7 7 import com.google.gwt.event.shared.*;
8 8 import com.google.gwt.place.shared.*;
9 9 import com.google.gwt.user.client.ui.*;
10 + import org.litesoft.sandbox.anywhere.die.*;
10 11
11 12 public class FrontActivity extends AbstractActivity implements FrontView.Presenter
12 13 {
  @@ -22,6 +23,7 @@
22 23 @Override
23 24 public void start( AcceptsOneWidget pPanel, EventBus pEventBus )
24 25 {
26 + mClientFactory.adjustDieFor( Places.Front );
25 27 mView.setPresenter( this );
26 28 pPanel.setWidget( mView.asWidget() );
27 29 }
  @@ -43,4 +45,10 @@
43 45 {
44 46 mClientFactory.goTo( place );
45 47 }
48 +
49 + @Override
50 + public Die getDie()
51 + {
52 + return mClientFactory.getDie();
53 + }
46 54 }