Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 60 for /trunk/Java/core/jvm1.4/src/org/litesoft/core/util/Hintable.java

Diff revisions: vs.
  @@ -1,8 +1,9 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.core.util;
3 3
4 + import java.io.*;
5 +
4 6 import org.litesoft.core.simpletypes.nonpublic.*;
5 - import org.litesoft.rpcpassable.*;
6 7
7 8 public interface Hintable
8 9 {
  @@ -58,7 +59,7 @@
58 59 public String removeHint( String pName )
59 60 throws IllegalArgumentException;
60 61
61 - public class Hint extends CompareSupport implements RPCpassable
62 + public class Hint extends CompareSupport implements Serializable
62 63 {
63 64 private String mName, mValue;
64 65