src/share/classes/java/rmi/server/UnicastRemoteObject.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

@@ -140,11 +140,11 @@
  * in the
  * <a href="{@docRoot}/../platform/rmi/spec/rmiTOC.html">Java RMI Specification</a>.
  *
  * @author  Ann Wollrath
  * @author  Peter Jones
- * @since   JDK1.1
+ * @since   1.1
  **/
 public class UnicastRemoteObject extends RemoteServer {
 
     /**
      * @serial port number on which to export object

@@ -171,11 +171,11 @@
      *
      * <p>The object is exported with a server socket
      * created using the {@link RMISocketFactory} class.
      *
      * @throws RemoteException if failed to export object
-     * @since JDK1.1
+     * @since 1.1
      */
     protected UnicastRemoteObject() throws RemoteException
     {
         this(0);
     }

@@ -240,11 +240,11 @@
      * the original.
      *
      * @exception CloneNotSupportedException if clone failed due to
      * a RemoteException.
      * @return the new remote object
-     * @since JDK1.1
+     * @since 1.1
      */
     public Object clone() throws CloneNotSupportedException
     {
         try {
             UnicastRemoteObject cloned = (UnicastRemoteObject) super.clone();

@@ -278,11 +278,11 @@
      * created using the {@link RMISocketFactory} class.
      *
      * @param obj the remote object to be exported
      * @return remote object stub
      * @exception RemoteException if export fails
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated This method is deprecated because it supports only static stubs.
      * Use {@link #exportObject(Remote, int) exportObject(Remote, port)} or
      * {@link #exportObject(Remote, int, RMIClientSocketFactory, RMIServerSocketFactory)
      * exportObject(Remote, port, csf, ssf)}
      * instead.