jdk/src/share/classes/java/awt/Container.java
changeset 20165 75e673bbdba6
parent 18178 ee71c923891d
child 20455 f6f9a0c2796b
--- a/jdk/src/share/classes/java/awt/Container.java	Wed Sep 25 14:06:15 2013 +0400
+++ b/jdk/src/share/classes/java/awt/Container.java	Wed Sep 25 16:17:42 2013 +0400
@@ -258,6 +258,12 @@
             public void validateUnconditionally(Container cont) {
                 cont.validateUnconditionally();
             }
+
+            @Override
+            public Component findComponentAt(Container cont, int x, int y,
+                    boolean ignoreEnabled) {
+                return cont.findComponentAt(x, y, ignoreEnabled);
+            }
         });
     }
 
@@ -2651,7 +2657,6 @@
      * behavior. Setting 'ignoreEnabled' to 'false' bypasses disabled
      * Components during the search. This behavior is used by the
      * lightweight cursor support in sun.awt.GlobalCursorManager.
-     * The cursor code calls this function directly via native code.
      *
      * The addition of this feature is temporary, pending the
      * adoption of new, public API which exports this feature.