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 31309 - NotifyException class - Not accessible JeditorPaneName
Summary: NotifyException class - Not accessible JeditorPaneName
Status: VERIFIED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: Window System (show other bugs)
Version: 3.x
Hardware: All All
: P4 blocker (vote)
Assignee: _ tboudreau
URL:
Keywords: A11Y
Depends on:
Blocks:
 
Reported: 2003-02-21 12:00 UTC by pzajac
Modified: 2008-12-22 23:38 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
accessibility test output (677 bytes, text/plain)
2003-02-21 12:01 UTC, pzajac
Details

Note You need to log in before you can comment on or make changes to this bug.
Description pzajac 2003-02-21 12:00:31 UTC
[200302200100]Not accessible JEditorPane by
keyboard for 
org.netbeans.core.NotifyException dialog. For
details see to attachment.
Comment 1 pzajac 2003-02-21 12:01:21 UTC
Created attachment 9074 [details]
accessibility test output
Comment 2 mslama 2003-02-21 13:56:23 UTC
There was commented:
       
output.getAccessibleContext().setAccessibleName(bundle.getString("ACSN_ExceptionStackTrace"));
       
output.getAccessibleContext().setAccessibleDescription(bundle.getString("ACSD_ExceptionStackTrace"));

Probably due to not using JEditorPane but OutPane or OutTermPane before?

Fixed in main trunk.

Modified:
core/src/org/netbeans/core/NotifyException.java r.1.44
Comment 3 mslama 2003-02-21 13:58:12 UTC
CC Jano who did various accessibility fixes to verify.
Comment 4 jrojcek 2003-02-21 14:45:19 UTC
Looks good, but I am not sure why the lines were commented out.
Comment 5 pzajac 2003-02-27 16:20:12 UTC
Fine, the JEditorPane is accesible but vertical scroll don't work by
using keyboard.
Comment 6 _ tboudreau 2004-02-21 17:48:04 UTC
Vertical scroll *does* work with the keyboard, but uses the standard JTextArea scrolling 
behavior - there is an invisible caret on line 0, and you have to wait until it moves to the 
bottom of the displayed area.  Just hold the arrow key down, it works.

I'm not going to make further improvements in this - if you feel like fixing its keyboard 
accessibility to use a different scroll interval or something, go ahead.  Users should never 
see this window - if they do, we have a bigger problem than whether or not its keyboard 
accessible - that's an optimization only useful to developers of NetBeans.

Anyway, we have bigger fish to fry than this.
Comment 7 _ tboudreau 2004-02-21 17:48:29 UTC
x
Comment 8 pzajac 2004-02-25 12:21:20 UTC
verified