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
package org.litesoft.sandbox.infrastructure.client;

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

public interface ActivityFactory extends HasPlaceId
{
    interface Synchronous<CommonActivityParam extends CommonActivityParameter, View extends IsWidget, APlace extends Place> extends ActivityFactory
    {
        View getView();

        Activity createActivity( CommonActivityParam pCommonActivityParam, View pView, APlace pPlace );
    }

    interface Asynchronous<CommonActivityParam extends CommonActivityParameter, View extends IsWidget, APlace extends Place> extends ActivityFactory
    {
        interface Callback<CommonActivityParam extends CommonActivityParameter, View extends IsWidget, APlace extends Place>
        {
            void loaded( Synchronous<CommonActivityParam, View, APlace> pSynchronousFactory );
        }

        void load( CommonActivityParam pCommonActivityParam, Callback<CommonActivityParam, View, APlace> pCallback );
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MultiModule/common/src/org/litesoft/sandbox/infrastructure/client/ActivityFactory.java

Diff revisions: vs.
Revision Author Commited Message
548 Diff Diff GeorgeS picture GeorgeS Mon 10 Oct, 2011 19:08:21 +0000
546 Diff Diff GeorgeS picture GeorgeS Sun 09 Oct, 2011 02:25:08 +0000
542 Diff Diff GeorgeS picture GeorgeS Mon 03 Oct, 2011 04:38:15 +0000
540 GeorgeS picture GeorgeS Mon 03 Oct, 2011 04:22:28 +0000