-
Bug
-
Resolution: Fixed
-
P3
-
6
j2se/src/share/classes/sun/tools/jconsole/resources/JConsoleResources.java
:
{"Connect", "Connect", 'C'},
:
{"Password: ", "Password: ", 'P'},
It seems that the third element above means the mnemonic character but
the mnemonic implementation using ListResourceBundle should be commonly
expected the key-value pairs like below.
:
{"jconsole.connect", "Connect"},
{"jconsole.connect.mnemonic", new Integer(KeyEvent.VK_C)},
:
{"jconsole.password", "Password: "},
{"jconsole.password.mnemonic", new Integer(KeyEvent.VK_P)},
:
{"Connect", "Connect", 'C'},
:
{"Password: ", "Password: ", 'P'},
It seems that the third element above means the mnemonic character but
the mnemonic implementation using ListResourceBundle should be commonly
expected the key-value pairs like below.
:
{"jconsole.connect", "Connect"},
{"jconsole.connect.mnemonic", new Integer(KeyEvent.VK_C)},
:
{"jconsole.password", "Password: "},
{"jconsole.password.mnemonic", new Integer(KeyEvent.VK_P)},
- relates to
-
JDK-6353987 Provide mnemonics on Create Connection dialog & menus
-
- Closed
-