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 140809 - [A11Y] Issues with [ChoiceGroup] Layout custom property editor
Summary: [A11Y] Issues with [ChoiceGroup] Layout custom property editor
Status: VERIFIED FIXED
Alias: None
Product: javame
Classification: Unclassified
Component: Visual Designer (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Denis Anisimov
URL:
Keywords: A11Y
Depends on:
Blocks:
 
Reported: 2008-07-18 19:50 UTC by Ivan Sidorkin
Modified: 2008-07-23 14:57 UTC (History)
1 user (show)

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 Ivan Sidorkin 2008-07-18 19:50:05 UTC
Results of Accessibility test, window with title "choiceGroup [ChoiceGroup] - Layout"


 Doesn't implement Accessible :
   - none.

 No Accessible name :
   Class: javax.swing.JEditorPane {  |  text/x-java } 


 No Accessible description :
   Class: javax.swing.JCheckBox {  After |  } 
   Class: javax.swing.JCheckBox {  Before |  } 
   Class: javax.swing.JCheckBox {  Default |  } 
   Class: javax.swing.JCheckBox {  Horizontal |  } 
   Class: javax.swing.JCheckBox {  Horizontal |  } 
   Class: javax.swing.JCheckBox {  MIDP 2 |  } 
   Class: javax.swing.JCheckBox {  Vertical |  } 
   Class: javax.swing.JCheckBox {  Vertical |  } 
   Class: javax.swing.JRadioButton {  Bottom |  } 
   Class: javax.swing.JRadioButton {  Center |  } 
   Class: javax.swing.JRadioButton {  Center |  } 
   Class: javax.swing.JRadioButton {  Layout: |  } 
   Class: javax.swing.JRadioButton {  Left |  } 
   Class: javax.swing.JRadioButton {  None |  } 
   Class: javax.swing.JRadioButton {  None |  } 
   Class: javax.swing.JRadioButton {  Right |  } 
   Class: javax.swing.JRadioButton {  Top |  } 


 Label with LABEL_FOR not set :
   - none.

 Components with no LABEL_FOR pointing to it :
   Class: javax.swing.JEditorPane {  |  text/x-java } 


 Components with no mnemonic :
   - none.

 Components with wrong mnemonic (mnemonic isn't ASCII , label doesn't contain mnemonic):
   - none.

 Components with potential mnemonics conflict:
 - components with mnemonic 'L' :
   Class: javax.swing.JRadioButton {  Layout: |  } 
   Class: javax.swing.JRadioButton {  Left |  }
Comment 1 Jaromir Uhrik 2008-07-21 11:28:24 UTC
This P2 issue because accessible name is missing - see http://qa.netbeans.org/bugzilla/bug_priority_guidelines.html
Comment 2 Denis Anisimov 2008-07-21 19:11:43 UTC
Radio buttons are replacement for labels here,
so there is no need in LABEL_FOR .

All other issues are fixed.

changeset:   90995:5bd609bdfdfd
user:        Denis Anisimov <ads@netbeans.org>
date:        Mon Jul 21 18:29:28 2008 +0400
summary:     Fix for #140809 - [A11Y] Issues with  [ChoiceGroup] Layout custom property editor
Comment 3 Ivan Sidorkin 2008-07-22 16:14:52 UTC
Results of Accessibility test, window with title "choiceGroup [ChoiceGroup] - Layout"

 No Accessible description :
   Class: javax.swing.JRadioButton {  Layout: |  } 
   Class: javax.swing.JRadioButton {  Selects Center Horizontal Alignment |  } 
   Class: javax.swing.JRadioButton {  Selects Right Horizontal Alignment |  } 
Comment 4 Denis Anisimov 2008-07-23 08:07:50 UTC
Correct . Due huge amount of accessible method calls there was used two
setAccessibleName() call instead of setAccessibleDescription().

Corrected.

changeset:   91344:28c25f89772c
user:        Denis Anisimov <ads@netbeans.org>
date:        Wed Jul 23 11:00:01 2008 +0400
summary:     Corrections for fixes in #140799 and #140809.
Comment 5 Ivan Sidorkin 2008-07-23 14:57:23 UTC
verified