Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 60 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/nonpublic/AbstractSendableSameConverter.java

Diff revisions: vs.
  @@ -1,19 +1,19 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.forms.server.support.nonpublic;
3 3
4 - import org.litesoft.rpcpassable.*;
4 + import java.io.*;
5 5
6 6 public abstract class AbstractSendableSameConverter extends AbstractSendableDataConverter
7 7 {
8 - protected RPCpassable convertNotNullToPassable( Object pValue )
8 + protected Serializable convertNotNullToPassable( Object pValue )
9 9 {
10 10 return convertCommon( pValue );
11 11 }
12 12
13 - protected Object convertNotNullNotBoxedTypeFromPassable( RPCpassable pValue )
13 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue )
14 14 {
15 15 return convertCommon( pValue );
16 16 }
17 17
18 - abstract protected RPCpassable convertCommon( Object pValue );
18 + abstract protected Serializable convertCommon( Object pValue );
19 19 }