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
package org.litesoft.sandbox.multimodule.client.module.groupback.back;

import org.litesoft.GWT.client.pavsupport.*;
import org.litesoft.sandbox.multimodule.anywhere.die.*;
import org.litesoft.sandbox.multimodule.client.foundation.places.*;
import org.litesoft.sandbox.multimodule.client.foundation.support.*;

public class BackActivity extends AbstractActivity<BackView> implements BackView.Presenter
{
    private ClientFactory mClientFactory;

    public BackActivity( ClientFactory pClientFactory, BackView pView, PlaceBack pPlace )
    {
        super( pView, pClientFactory );
        mClientFactory = pClientFactory;
        pView.setLuckyId( (pPlace != null) ? pPlace.getLuckyId() : null );
    }

    @Override
    protected void start()
    {
        mClientFactory.adjustDieFor( EnumPlaces.Back );
    }

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

Commits for litesoft/trunk/GWT_Sandbox/MultiModuleSingleSrc/main/src/org/litesoft/sandbox/multimodule/client/module/groupback/back/BackActivity.java

Diff revisions: vs.
Revision Author Commited Message
749 Diff Diff GeorgeS picture GeorgeS Fri 06 Jul, 2012 00:11:43 +0000
728 Diff Diff GeorgeS picture GeorgeS Sat 16 Jun, 2012 23:39:49 +0000
713 Diff Diff GeorgeS picture GeorgeS Sat 09 Jun, 2012 22:47:07 +0000
669 GeorgeS picture GeorgeS Sun 13 May, 2012 23:29:27 +0000