Index: org/omg/stub/java/rmi/_Remote_Stub.java
===================================================================
RCS file: /cvsroot/classpath/classpath/org/omg/stub/java/rmi/_Remote_Stub.java,v
retrieving revision 1.1
diff -u -r1.1 _Remote_Stub.java
--- org/omg/stub/java/rmi/_Remote_Stub.java	4 Jun 2005 08:09:47 -0000	1.1
+++ org/omg/stub/java/rmi/_Remote_Stub.java	5 Jun 2005 19:40:18 -0000
@@ -38,20 +38,32 @@
 
 package org.omg.stub.java.rmi;
 
-import org.omg.CORBA_2_3.portable.ObjectImpl;
+import java.io.Serializable;
+
+import java.rmi.Remote;
+
+import javax.rmi.CORBA.Stub;
 
 /**
  * Provides a stub for Remote type.
  *
  * Despite this class has appeared since v 1.3, it is oficially marked
- * as incomplete at least till v 1.4 inclusive. Hence significant alterations
+ * as incomplete at least till v 1.5 inclusive. Hence significant alterations
  * are expected in the future.
  *
  * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  */
 public final class _Remote_Stub
-  extends ObjectImpl
+  extends Stub
+  implements Remote, Serializable
 {
+
+ /**
+  * Use serialVersionUID (v1.4) for interoperability.
+  */
+ private static final long serialVersionUID = -1967190271952680697L;
+
+
   /**
    * Returs the array of repository ids, implemented by this object.
    * The method must be overridden to return the meaningful information.
@@ -62,4 +74,5 @@
   {
     return new String[] { "" };
   }
+
 }
\ No newline at end of file
