This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 86151 - [a11y] Mnemonics handling issue
Summary: [a11y] Mnemonics handling issue
Status: VERIFIED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: Output Window (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Milos Kleint
URL:
Keywords: A11Y
Depends on:
Blocks: 86438
  Show dependency tree
 
Reported: 2006-09-29 13:56 UTC by Jaromir Uhrik
Modified: 2008-12-22 14:24 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jaromir Uhrik 2006-09-29 13:56:34 UTC
In the files listed below there is used calling of method setMnemonic() or
setDisplayedMnemonic(). Class org.openide.awt.Mnemonics should be used instead -
see issue #67807.

core\execution\src\org\netbeans\core\execution\beaninfo\editors\NbClassPathCustomEditor.java
core\execution\src\org\netbeans\core\execution\beaninfo\editors\NbProcessDescriptorCustomEditor.java
core\output\src\org\netbeans\core\output\FindDialogPanel.java
core\output2\src\org\netbeans\core\output2\ui\InputPanel.java
core\output2\src\org\netbeans\core\output2\FindDialogPanel.java
core\output2\src\org\netbeans\core\output2\ui\InputPanel.java
core\output2\src\org\netbeans\core\output2\FindDialogPanel.java
core\src\org\netbeans\beaninfo\editors\DataFolderPanel.java
core\src\org\netbeans\beaninfo\editors\DimensionCustomEditor.java
core\src\org\netbeans\beaninfo\editors\FontEditor.java
core\src\org\netbeans\beaninfo\editors\InsetsCustomEditor.java
core\src\org\netbeans\beaninfo\editors\PointCustomEditor.java
core\src\org\netbeans\beaninfo\editors\RectangleCustomEditor.java
core\src\org\netbeans\beaninfo\editors\ServiceTypePanel.java
core\src\org\netbeans\beaninfo\LoaderActionsPanel.java
core\src\org\netbeans\core\actions\OptionsAction.java
core\src\org\netbeans\core\NbAuthenticator.java
core\src\org\netbeans\core\NotifyExcPanel.java
core\windows\src\org\netbeans\core\windows\services\FileSelector.java
Comment 1 Milos Kleint 2006-09-29 16:31:16 UTC
core/output2 and core/execution fixed.
Comment 2 Milos Kleint 2006-10-02 13:51:37 UTC
all done.
Comment 3 Jaromir Uhrik 2006-10-12 15:27:45 UTC
Reopening - following 2 files still need the change:
core\output\src\org\netbeans\core\output\FindDialogPanel.java
core\src\org\netbeans\beaninfo\editors\ServiceTypePanel.java
Comment 4 Milos Kleint 2006-10-17 09:08:08 UTC
cannot find any string matching setDisplayedMnemonic or setMnemonic in the
FindDialogPanel.
the ServiceTypePanel has some dynamic code for assigning mnemonic (first
character is taken) and on top of that is probably not used at all in the
codebase. I prefer keeping it the way it is.
Comment 5 Jaromir Uhrik 2007-10-02 13:02:25 UTC
Verified.