Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,12 +1,13 @@
1 1 package org.litesoft.sandbox.multimodule.groupfront.client.right;
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 RightActivity extends AbstractActivity implements RightView.Presenter
12 13 {
  @@ -21,6 +22,7 @@
21 22 @Override
22 23 public void start( AcceptsOneWidget pPanel, EventBus pEventBus )
23 24 {
25 + mClientFactory.adjustDieFor( Places.Right );
24 26 mView.setPresenter( this );
25 27 pPanel.setWidget( mView.asWidget() );
26 28 }
  @@ -40,6 +42,12 @@
40 42 @Override
41 43 public void goTo( Place place )
42 44 {
43 - mClientFactory.goTo(place);
45 + mClientFactory.goTo( place );
46 + }
47 +
48 + @Override
49 + public Die getDie()
50 + {
51 + return mClientFactory.getDie();
44 52 }
45 53 }