Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -4,17 +4,17 @@
4 4 import java.util.*;
5 5
6 6 import org.litesoft.core.simpletypes.*;
7 - import org.litesoft.rpcpassable.*;
7 + import java.io.*;
8 8 import org.litesoft.util.*;
9 9
10 10 public abstract class AbstractSendableKeyValuePairConverter extends AbstractSendableDataConverter
11 11 {
12 - protected RPCpassable convertNotNullToPassable( Object pValue )
12 + protected Serializable convertNotNullToPassable( Object pValue )
13 13 {
14 14 return createSimpleKeyValuePair( pValue );
15 15 }
16 16
17 - protected Object convertNotNullNotBoxedTypeFromPassable( RPCpassable pValue )
17 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue )
18 18 {
19 19 return (pValue instanceof SimpleKeyValuePair) ? //
20 20 convertSimpleKeyValuePairKey( ((SimpleKeyValuePair) pValue).getKey() ) : //