I created a demo Java swing application to test that, is Orca Screen Reader(linux) can read that application. I create a JFrame window and Jbutton on Jframe and Implement Java Accessibility API and set accessible description to that JButton but orca screen can't read that button name. I also add tool-tip to that button but still Orca Screen Reader(Linux) can not read that tool-tip also.
I also created Jmenu bar and set all accessible properties but Still Orca Screen Reader can't read that menu also.
sampleCode:
JMenu help = new JMenu("Help");
help.setMnemonic(KeyEvent.VK_H);
help.setToolTipText("Help");
help.getAccessibleContext().setAccessibleName("Help");
help.getAccessibleContext().setAccessibleDescription("Help Menubar");
So, can any one please tell me that what is the proper way to create Java swing applciation accessible to Orca Screen Reader.