Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package org.litesoft.sandbox.multimodule.groupback.client.bottom;

import org.litesoft.sandbox.anywhere.die.*;
import org.litesoft.sandbox.infrastructure.client.*;
import org.litesoft.sandbox.multimodule.foundation.client.*;
import org.litesoft.sandbox.multimodule.foundation.client.places.*;

import com.google.gwt.place.shared.*;
import com.google.gwt.user.client.ui.*;

public class BottomActivity extends AbstractActivity implements BottomView.Presenter {
    private ClientFactory mClientFactory;
    private BottomView mView;

    public BottomActivity( ClientFactory pClientFactory, BottomView pView, BottomPlace pPlace ) {
        mClientFactory = pClientFactory;
        (mView = pView).setLuckyId( (pPlace != null) ? pPlace.getLuckyId() : null );
    }

    @Override
    public void start( AcceptsOneWidget pPanel ) {
        mClientFactory.adjustDieFor( Places.Bottom );
        mView.setPresenter( this );
        pPanel.setWidget( mView.asWidget() );
    }

    @Override
    public void goTo( Place place ) {
        mClientFactory.goTo( place );
    }

    @Override
    public Die getDie() {
        return mClientFactory.getDie();
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MultiModule/groupBack/src/org/litesoft/sandbox/multimodule/groupback/client/bottom/BottomActivity.java

Diff revisions: vs.
Revision Author Commited Message
950 Diff Diff GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:57:04 +0000

New Lines

948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

543 Diff Diff GeorgeS picture GeorgeS Fri 07 Oct, 2011 12:27:03 +0000
540 Diff Diff GeorgeS picture GeorgeS Mon 03 Oct, 2011 04:22:28 +0000
514 Diff Diff GeorgeS picture GeorgeS Thu 22 Sep, 2011 06:07:01 +0000
508 Diff Diff GeorgeS picture GeorgeS Sun 18 Sep, 2011 16:39:39 +0000

More progress on Multi

507 GeorgeS picture GeorgeS Thu 15 Sep, 2011 14:00:27 +0000