Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,13 +1,14 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.forms.client.nonpublic;
3 3
4 + import java.io.*;
5 +
4 6 import org.litesoft.GWT.client.*;
5 7 import org.litesoft.GWT.eventbus.client.*;
6 8 import org.litesoft.GWT.forms.client.*;
7 9 import org.litesoft.GWT.forms.client.components.nonpublic.*;
8 10 import org.litesoft.core.simpletypes.*;
9 11 import org.litesoft.core.util.*;
10 - import org.litesoft.rpcpassable.*;
11 12 import org.litesoft.ui.def.nonpublic.support.*;
12 13
13 14 public class RenderedFormHandlerImpl implements RenderedFormHandler,
  @@ -38,7 +39,7 @@
38 39 mManager = new RFHMessageManager( mFormServicePeerChannel, LOGGER );
39 40 }
40 41
41 - public void formRendered( AbstractFormContainer pFormContainer, RPCpassable pServicePeerXtra )
42 + public void formRendered( AbstractFormContainer pFormContainer, Serializable pServicePeerXtra )
42 43 {
43 44 chkMethodOK( "formRendered", pServicePeerXtra );
44 45 mFormContainer = pFormContainer;
  @@ -161,7 +162,7 @@
161 162 }
162 163
163 164 public void sendAttibuteValue( FormDataRowKey pFormDataRowKey, Integer pAttributeUniqueID,
164 - String pAttributeReference, RPCpassable pCurrentValue )
165 + String pAttributeReference, Serializable pCurrentValue )
165 166 {
166 167 chkMethodOK( "sendAttibuteValue", pAttributeReference, pCurrentValue );
167 168 LLsendAttibuteValue( new ValueUpdatedFormData( pFormDataRowKey, //
  @@ -231,7 +232,7 @@
231 232
232 233 // Bridge to FormServicePeer
233 234 public void componentUpdatedValue( FormDataRowKey pFormDataRowKey, FormAttributeAdapter pAttributeAdapter,
234 - RPCpassable pCurrentValue )
235 + Serializable pCurrentValue )
235 236 {
236 237 LOGGER.debug.log( "componentUpdatedValue[", pFormDataRowKey, "]:", pAttributeAdapter, "=",
237 238 pCurrentValue );