Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/pavment/ActivityFactory.java

Diff revisions: vs.
  @@ -1,20 +1,16 @@
1 1 package com.temp.client.foundation.pavment;
2 2
3 - import com.google.gwt.place.shared.Place;
3 + import com.google.gwt.place.shared.*;
4 4
5 - public interface ActivityFactory extends HasPlaceId
6 - {
7 - interface Synchronous<CommonActivityParam extends CommonActivityParameter, ViewImpl extends View, APlace extends Place> extends ActivityFactory
8 - {
5 + public interface ActivityFactory extends HasPlaceId {
6 + interface Synchronous<CommonActivityParam extends CommonActivityParameter, ViewImpl extends View, APlace extends Place> extends ActivityFactory {
9 7 ViewImpl getView();
10 8
11 9 Activity createActivity( CommonActivityParam pCommonActivityParam, ViewImpl pView, APlace pPlace );
12 10 }
13 11
14 - interface Asynchronous<CommonActivityParam extends CommonActivityParameter, ViewImpl extends View, APlace extends Place> extends ActivityFactory
15 - {
16 - interface Callback<CommonActivityParam extends CommonActivityParameter, ViewImpl extends View, APlace extends Place>
17 - {
12 + interface Asynchronous<CommonActivityParam extends CommonActivityParameter, ViewImpl extends View, APlace extends Place> extends ActivityFactory {
13 + interface Callback<CommonActivityParam extends CommonActivityParameter, ViewImpl extends View, APlace extends Place> {
18 14 void loaded( Synchronous<CommonActivityParam, ViewImpl, APlace> pSynchronousFactory );
19 15 }
20 16