6899877: JComponent.add/removeNotify() should mention that they are not supposed to be called directly
authorrupashka
Sat, 13 Nov 2010 13:04:47 +0300
changeset 7159 6223064e4a43
parent 7158 460a00736da9
child 7160 e610223887fb
6899877: JComponent.add/removeNotify() should mention that they are not supposed to be called directly Reviewed-by: alexp
jdk/src/share/classes/javax/swing/JComponent.java
--- a/jdk/src/share/classes/javax/swing/JComponent.java	Fri Nov 12 10:49:52 2010 -0800
+++ b/jdk/src/share/classes/javax/swing/JComponent.java	Sat Nov 13 13:04:47 2010 +0300
@@ -4734,6 +4734,8 @@
      * Notifies this component that it now has a parent component.
      * When this method is invoked, the chain of parent components is
      * set up with <code>KeyboardAction</code> event listeners.
+     * This method is called by the toolkit internally and should
+     * not be called directly by programs.
      *
      * @see #registerKeyboardAction
      */
@@ -4750,6 +4752,8 @@
      * Notifies this component that it no longer has a parent component.
      * When this method is invoked, any <code>KeyboardAction</code>s
      * set up in the the chain of parent components are removed.
+     * This method is called by the toolkit internally and should
+     * not be called directly by programs.
      *
      * @see #registerKeyboardAction
      */