Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/eventbus/client/IEventBus.java

Diff revisions: vs.
  @@ -7,8 +7,7 @@
7 7 import org.litesoft.core.util.*;
8 8 import org.litesoft.logger.*;
9 9
10 - public interface IEventBus
11 - {
10 + public interface IEventBus {
12 11 TimedRunner getTimedRunner();
13 12
14 13 UnexpectedExceptionHandler getUnexpectedExceptionHandler();
  @@ -24,7 +23,7 @@
24 23 void handleUnexpectedException( String pFrom, Throwable pThrowable );
25 24
26 25 String getForm() // Client / Server / ...
27 - ;
26 + ;
28 27
29 28 int getClientIdNumber();
30 29
  @@ -55,10 +54,10 @@
55 54 void subscribe( EventSubscriptionCollector pCollector );
56 55
57 56 void subscribeAndPublish( String pTargetName, EventPackageListener pListener,
58 - EventPackage pPackage );
57 + EventPackage pPackage );
59 58
60 59 void subscribeAndPublish( String pTargetName, EventPackageListener pListener,
61 - EventPackage[] pPackages );
60 + EventPackage[] pPackages );
62 61
63 62 void subscribeAndPublish( EventPackageSubscriber pSubscriber, EventPackage pPackage );
64 63
  @@ -67,13 +66,13 @@
67 66 void subscribeAndPublish( EventSubscriptionStructure pSubscription, EventPackage pPackage );
68 67
69 68 void subscribeAndPublish( EventSubscriptionStructure pSubscription,
70 - EventPackage[] pPackages );
69 + EventPackage[] pPackages );
71 70
72 71 void subscribeAndPublish( EventSubscriptionStructure[] pSubscriptions,
73 - EventPackage pPackage );
72 + EventPackage pPackage );
74 73
75 74 void subscribeAndPublish( EventSubscriptionStructure[] pSubscriptions,
76 - EventPackage[] pPackages );
75 + EventPackage[] pPackages );
77 76
78 77 void subscribeAndPublish( EventSubscriptionCollector pCollector, EventPackage pPackage );
79 78
  @@ -96,34 +95,34 @@
96 95 void subscribeIfNotDisposed( EventSubscriptionCollector pCollector );
97 96
98 97 void subscribeAndPublishIfNotDisposed( String pTargetName, EventPackageListener pListener,
99 - EventPackage pPackage );
98 + EventPackage pPackage );
100 99
101 100 void subscribeAndPublishIfNotDisposed( String pTargetName, EventPackageListener pListener,
102 - EventPackage[] pPackages );
101 + EventPackage[] pPackages );
103 102
104 103 void subscribeAndPublishIfNotDisposed( EventPackageSubscriber pSubscriber,
105 - EventPackage pPackage );
104 + EventPackage pPackage );
106 105
107 106 void subscribeAndPublishIfNotDisposed( EventPackageSubscriber pSubscriber,
108 - EventPackage[] pPackages );
107 + EventPackage[] pPackages );
109 108
110 109 void subscribeAndPublishIfNotDisposed( EventSubscriptionStructure pSubscription,
111 - EventPackage pPackage );
110 + EventPackage pPackage );
112 111
113 112 void subscribeAndPublishIfNotDisposed( EventSubscriptionStructure pSubscription,
114 - EventPackage[] pPackages );
113 + EventPackage[] pPackages );
115 114
116 115 void subscribeAndPublishIfNotDisposed( EventSubscriptionStructure[] pSubscriptions,
117 - EventPackage pPackage );
116 + EventPackage pPackage );
118 117
119 118 void subscribeAndPublishIfNotDisposed( EventSubscriptionStructure[] pSubscriptions,
120 - EventPackage[] pPackages );
119 + EventPackage[] pPackages );
121 120
122 121 void subscribeAndPublishIfNotDisposed( EventSubscriptionCollector pCollector,
123 - EventPackage pPackage );
122 + EventPackage pPackage );
124 123
125 124 void subscribeAndPublishIfNotDisposed( EventSubscriptionCollector pCollector,
126 - EventPackage[] pPackages );
125 + EventPackage[] pPackages );
127 126
128 127 void publishIfNotDisposed( EventPackage pPackage );
129 128