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 252039 - [a11y] Voice Over on Mac does not indicate editor warning/error/hint
Summary: [a11y] Voice Over on Mac does not indicate editor warning/error/hint
Status: NEW
Alias: None
Product: editor
Classification: Unclassified
Component: Hints & Annotations (show other bugs)
Version: 8.0.2
Hardware: Macintosh Mac OS X
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords: A11Y
Depends on:
Blocks:
 
Reported: 2015-04-23 21:06 UTC by pmuesbeck
Modified: 2016-06-22 16:01 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 pmuesbeck 2015-04-23 21:06:38 UTC
Using the Voice Over screen reader on Mac OS X, the screen reader will not indicate that there is a editor hint at a certain position. Proposed fix would be to play a sound for warnings and another one for error messages and provide BVI users the possibility to get the message corresponding to the underline read out loud. Steps to reproduce: 
1. start Netbeans IDE 
2. click on a line in the code 
3. start VO (cmd + F5 or setting it to enabled in the preferences menu) 
4. navigate the cursor to a warning or error 
5. no indication is given that there is an error or warning or hint on the line. 
6. use cursor to step through underlined text 
7. no indication is given that there is an error or warning or hint. 
Example 1 (hint): 
public class A {
	public void method() {}
}
public class B extends A{
	public void method() {} // There would be a hint here to add @Overrides
}
Example 2 (error):
public class A {
	poblic void method() {} // Syntax error here that would be displayed by the IDE
}
Example 3 (warning):
public class A {
	public void method() {
        		int x = 0;
      		 x = x;
    	}


}