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

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

@@ -32,11 +32,11 @@
  * <code>LoaderHandler</code> is an interface used internally by the RMI
  * runtime in previous implementation versions.  It should never be accessed
  * by application code.
  *
  * @author  Ann Wollrath
- * @since   JDK1.1
+ * @since   1.1
  *
  * @deprecated no replacement
  */
 @Deprecated
 public interface LoaderHandler {

@@ -54,11 +54,11 @@
      *            if the system property <b>java.rmi.server.codebase</b>
      *            contains an invalid URL
      * @exception ClassNotFoundException
      *            if a definition for the class could not
      *            be found at the codebase location.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     Class<?> loadClass(String name)
         throws MalformedURLException, ClassNotFoundException;

@@ -73,11 +73,11 @@
      *            if the <code>codebase</code> paramater
      *            contains an invalid URL
      * @exception ClassNotFoundException
      *            if a definition for the class could not
      *            be found at the specified URL
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     Class<?> loadClass(URL codebase, String name)
         throws MalformedURLException, ClassNotFoundException;

@@ -85,11 +85,11 @@
     /**
      * Returns the security context of the given class loader.
      *
      * @param loader  a class loader from which to get the security context
      * @return the security context
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     Object getSecurityContext(ClassLoader loader);
 }