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 143644 - A11Y: Component with no mnemonic in "Breakpoint Properties" dialog
Summary: A11Y: Component with no mnemonic in "Breakpoint Properties" dialog
Status: VERIFIED FIXED
Alias: None
Product: javascript
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: Joelle Lam
URL:
Keywords: A11Y
Depends on:
Blocks:
 
Reported: 2008-08-12 18:12 UTC by Roman Mostyka
Modified: 2008-08-27 11:23 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 Roman Mostyka 2008-08-12 18:12:28 UTC
Results of Accessibility test, window with title "Breakpoint Properties"
Components with no mnemonic :
  Class: javax.swing.JCheckBox {  Condition |  Select to set conditional breakpoint. } 
  Class: javax.swing.JLabel {  &File: |  File } 
  Class: javax.swing.JLabel {  Line number |  null } 
  Class: javax.swing.JLabel {  Resolved URL: |   }
Comment 1 Joelle Lam 2008-08-26 01:11:13 UTC
I am not quite sure what to do for this.  I am seeing my mnemonics as being set.  What more can I check?

        fileLabel.setLabelFor(tfFileName);
        org.openide.awt.Mnemonics.setLocalizedText(fileLabel, bundle.getString("L_Line_Breakpoint_File_Name")); // NOI18N
        fileLabel.setToolTipText("");

        tfFileName.setColumns(60);
        tfFileName.setToolTipText(bundle.getString("TTT_TF_Line_Breakpoint_File_Name")); // NOI18N

        lineNumLabel.setLabelFor(tfLineNumber);
        org.openide.awt.Mnemonics.setLocalizedText(lineNumLabel, bundle.getString("L_Line_Breakpoint_Line_Number")); //
NOI18N
        lineNumLabel.setToolTipText("");

        tfLineNumber.setToolTipText(bundle.getString("TTT_TF_Line_Breakpoint_Line_Number")); // NOI18N

        urlLabel.setLabelFor(tfLineNumber);
        org.openide.awt.Mnemonics.setLocalizedText(urlLabel, bundle.getString("L_Line_Breakpoint_URL")); // NOI18N
        urlLabel.setToolTipText("");
Comment 2 Roman Mostyka 2008-08-26 13:03:27 UTC
I don't see this issues on Windows anymore, but see it on Mac OS X. If accessibility on Mac OS X is different, then this
issue can be closed as FIXED. If not, then platform and os should be changed and issue must be fixed.
Comment 3 Joelle Lam 2008-08-26 23:51:48 UTC
This is most likely an issues with Mac JDK.  Unfortunately there is no mechanism or policy for A11y for that is Mac
specific.
Comment 4 Roman Mostyka 2008-08-27 11:23:24 UTC
Verified.