jdk/src/share/classes/java/lang/ClassLoader.java
changeset 20782 2711da7ccd30
parent 18776 c17100862d86
child 20854 242194ae1563
--- a/jdk/src/share/classes/java/lang/ClassLoader.java	Sun Oct 13 21:10:33 2013 -0700
+++ b/jdk/src/share/classes/java/lang/ClassLoader.java	Mon Oct 14 10:42:36 2013 +0200
@@ -1061,6 +1061,10 @@
      * built-in to the virtual machine is searched.  That failing, this method
      * will invoke {@link #findResource(String)} to find the resource.  </p>
      *
+     * @apiNote When overriding this method it is recommended that an
+     * implementation ensures that any delegation is consistent with the {@link
+     * #getResources(java.lang.String) getResources(String)} method.
+     *
      * @param  name
      *         The resource name
      *
@@ -1094,6 +1098,13 @@
      * <p> The search order is described in the documentation for {@link
      * #getResource(String)}.  </p>
      *
+     * @apiNote When overriding this method it is recommended that an
+     * implementation ensures that any delegation is consistent with the {@link
+     * #getResource(java.lang.String) getResource(String)} method. This should
+     * ensure that the first element returned by the Enumeration's
+     * {@code nextElement} method is the same resource that the
+     * {@code getResource(String)} method would return.
+     *
      * @param  name
      *         The resource name
      *