diff --git a/jdk/src/share/classes/javax/swing/JMenuBar.java b/jdk/src/share/classes/javax/swing/JMenuBar.java
index 0a16c865d15..22dbe6274fe 100644
--- a/jdk/src/share/classes/javax/swing/JMenuBar.java
+++ b/jdk/src/share/classes/javax/swing/JMenuBar.java
@@ -70,7 +70,14 @@ import javax.accessibility.*;
* of all JavaBeansTM
* has been added to the java.beans package.
* Please see {@link java.beans.XMLEncoder}.
- *
+ *
+ * Warning:
+ * By default, pressing the Tab key does not transfer focus from a
+ * JMenuBar which is added to a container together with other Swing
+ * components, because the focusTraversalKeysEnabled property
+ * of JMenuBar is set to false. To resolve this,
+ * you should call the JMenuBar.setFocusTraversalKeysEnabled(true)
+ * method.
* @beaninfo
* attribute: isContainer true
* description: A container for holding and displaying menus.