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

Summary: [a11y] Mnemonics handling issue
Product: platform Reporter: Jaromir Uhrik <juhrik>
Component: Output WindowAssignee: Milos Kleint <mkleint>
Status: VERIFIED FIXED    
Severity: blocker Keywords: A11Y
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Bug Depends on:    
Bug Blocks: 86438    

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.