Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,22 +1,22 @@
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 import org.litesoft.core.util.*;
6 6
7 7 public abstract class AbstractSendableDataConverter extends TypeConverter implements FormSendableDataConverter
8 8 {
9 - public RPCpassable convertToPassable( Object pValue )
9 + public Serializable convertToPassable( Object pValue )
10 10 {
11 11 return (pValue != null) ? convertNotNullToPassable( pValue ) : null;
12 12 }
13 13
14 - public Object convertFromPassable( RPCpassable pValue )
14 + public Object convertFromPassable( Serializable pValue )
15 15 {
16 16 return pValue != null ? convertNotNullNotBoxedTypeFromPassable( pValue ) : null;
17 17 }
18 18
19 - abstract protected RPCpassable convertNotNullToPassable( Object pValue );
19 + abstract protected Serializable convertNotNullToPassable( Object pValue );
20 20
21 - abstract protected Object convertNotNullNotBoxedTypeFromPassable( RPCpassable pValue );
21 + abstract protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue );
22 22 }