Paul Taylor
Paul Taylor

Reputation: 13200

How do I make my Java 8 application JAWS enabled to help blind users?

How do I make my Java 8 application JAWS-enabled to help blind users? I have tool-tips for all options, but a customer who uses JAWS says my application does very little and does not read the tool-tips. How do I make it do that?

Upvotes: 3

Views: 799

Answers (1)

coolk
coolk

Reputation: 353

If setting tooltip is not working try getAccessibleContext() API. e.g.

component.getAccessibleContext().setAccessibleDescription("This is tooltip.");

Also below is official guide from Oracle. Rules for Supporting Accessibility

Upvotes: 1

Related Questions