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

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

@@ -35,11 +35,11 @@
  * stub compiler implements this interface. A skeleton for a remote object is
  * a server-side entity that dispatches calls to the actual remote object
  * implementation.
  *
  * @author  Ann Wollrath
- * @since   JDK1.1
+ * @since   1.1
  * @deprecated no replacement.  Skeletons are no longer required for remote
  * method calls in the Java 2 platform v1.2 and greater.
  */
 @Deprecated
 public interface Skeleton {

@@ -50,21 +50,21 @@
      * @param obj remote implementation to dispatch call to
      * @param theCall object representing remote call
      * @param opnum operation number
      * @param hash stub/skeleton interface hash
      * @exception java.lang.Exception if a general exception occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     void dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)
         throws Exception;
 
     /**
      * Returns the operations supported by the skeleton.
      * @return operations supported by skeleton
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     Operation[] getOperations();
 }