import javax.swing.ImageIcon; import javax.swing.JButton; public class Main { public static void main(String[] argv) throws Exception { JButton button = new JButton(new ImageIcon("image.gif")); button.setToolTipText("Button Name"); button.getAccessibleContext().setAccessibleName("Button Name"); } }
14.126.Accessible | ||||
14.126.1. | implement Accessible to make your object accessible | |||
14.126.2. | Setting an Accessible Name for an Image Button | |||
14.126.3. | Setting a Description for Image Icons | |||
14.126.4. | Setting a Mnemonic for Buttons for Accessible | |||
14.126.5. | Setting a Mnemonic for a Menu for Accessible | |||
14.126.6. | Associating a Label with a Component | |||
14.126.7. | Setting a Keyboard Accelerator for a Menu Item |