Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 60 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/UiFormListener.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.forms.client;
3 3
4 - import org.litesoft.rpcpassable.*;
4 + import java.io.*;
5 5
6 6 public interface UiFormListener
7 7 {
  @@ -10,12 +10,12 @@
10 10 * will typically call {@link UiFormHandler#requestValues(String)} to ensure
11 11 * the back end has started a transaction.
12 12 */
13 - public void formRendered( UiFormHandler pUiFormHandler, RPCpassable pServicePeerXtra );
13 + public void formRendered( UiFormHandler pUiFormHandler, Serializable pServicePeerXtra );
14 14
15 15 /**
16 16 * Called after the form is fully populated with values from the back end.
17 17 */
18 - public void formValuesApplied( UiFormHandler pUiFormHandler, RPCpassable pServicePeerXtra );
18 + public void formValuesApplied( UiFormHandler pUiFormHandler, Serializable pServicePeerXtra );
19 19
20 20 /**
21 21 * Called when the form ErrorState changes.
  @@ -45,10 +45,10 @@
45 45 * Called by the form service to indicate the Service Peer Successfully processed an ActionRequest.
46 46 */
47 47 public void formActionSucceeded( UiFormHandler pUiFormHandler, String pActionID, // todo: boolean pDataCommitted,
48 - RPCpassable pServicePeerXtra );
48 + Serializable pServicePeerXtra );
49 49
50 50 /**
51 51 * Called by the form service to indicate the form UI should be disposed.
52 52 */
53 - public void formCloseRequested( UiFormHandler pUiFormHandler, RPCpassable pServicePeerXtra );
53 + public void formCloseRequested( UiFormHandler pUiFormHandler, Serializable pServicePeerXtra );
54 54 }