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 54535 - A11Y Problems in Change Project Properties dialog
Summary: A11Y Problems in Change Project Properties dialog
Status: CLOSED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Project (show other bugs)
Version: 4.x
Hardware: All All
: P2 blocker (vote)
Assignee: Tomas Zezula
URL:
Keywords: A11Y
Depends on:
Blocks: 55857
  Show dependency tree
 
Reported: 2005-02-04 10:01 UTC by Milan Kubec
Modified: 2006-03-24 12:50 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 Milan Kubec 2005-02-04 10:01:34 UTC
[dev-200502021900, JDK 1.4.2_07]

Dialog is opened if user wants to save Project
Properties of project originally from 4.0.

Doesn't implement Accessible :
 Class: javax.swing.plaf.basic.BasicOptionPaneUI$5
{  }

No Accessible description :
 Class: javax.swing.JButton {  Upgrade Project |  }
Comment 1 Tomas Zezula 2005-02-04 14:23:01 UTC
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/Bundle.properties;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/Bundle.properties,v
 <--  Bundle.properties
new revision: 1.19; previous revision: 1.18
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/UpdateHelper.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/UpdateHelper.java,v
 <--  UpdateHelper.java
new revision: 1.8; previous revision: 1.7
done
Comment 2 Milan Kubec 2005-02-24 15:02:14 UTC
"Doesn't implement Accessible :" still applies, it's not fixable?
Comment 3 Tomas Zezula 2005-02-25 08:27:29 UTC
It is a JDK component but I will try to look if it is somehow fixable.
Comment 4 Tomas Zezula 2005-02-26 09:25:37 UTC
This is out of the control of java/j2seproject module, it is in the JDK.
I am doing DialogDescriptor.getDefault (). notify
("Message:String",....) it delegates to JOptionPane. I have no
component to set the accessible info to. The fix will be to replace
the String by JComponent and set the accessible info to it, but the
JOptionPane handles multi line HTML text. Ittokenizes the text and
creates corresponding JLables. I don't want to have copy of this in
java module.
Comment 5 Milan Kubec 2005-02-28 09:59:05 UTC
I think that this issue should have FIXED as resolution.
Comment 6 Milan Kubec 2005-02-28 09:59:54 UTC
Already fixed.
Comment 7 Milan Kubec 2005-02-28 12:15:43 UTC
Verified.