jdk/src/share/classes/java/awt/Container.java
changeset 21957 97758de70fbd
parent 21278 ef8a3a2a72f2
child 21967 f09a60fb5967
--- a/jdk/src/share/classes/java/awt/Container.java	Tue Dec 03 12:25:32 2013 -0800
+++ b/jdk/src/share/classes/java/awt/Container.java	Tue Dec 03 16:20:44 2013 -0500
@@ -186,7 +186,7 @@
      * the method can return the Container on which it is originally called
      * in case if none of its children are the current mouse event targets.
      *
-     * @see #getMouseEventTarget(int, int, boolean, boolean, boolean)
+     * @see #getMouseEventTarget(int, int, boolean)
      */
     static final boolean INCLUDE_SELF = true;
 
@@ -195,7 +195,7 @@
      * of <code>getMouseEventTarget</code>. It is used to specify whether
      * the method should search only lightweight components.
      *
-     * @see #getMouseEventTarget(int, int, boolean, boolean, boolean)
+     * @see #getMouseEventTarget(int, int, boolean)
      */
     static final boolean SEARCH_HEAVYWEIGHTS = true;
 
@@ -1037,7 +1037,7 @@
      * every add request to a container as all other add methods defer
      * to this one. An overriding method should
      * usually include a call to the superclass's version of the method:
-     * <p>
+     *
      * <blockquote>
      * <code>super.addImpl(comp, constraints, index)</code>
      * </blockquote>