Setting a Mnemonic for Buttons for Accessible : Accessible « Swing JFC « Java






Setting a Mnemonic for Buttons for Accessible

 

import javax.swing.JButton;
import javax.swing.JCheckBox;

public class Main {
  public static void main(String[] argv) throws Exception {

    JButton button = new JButton("Button");
    button.setMnemonic('B');
    JCheckBox checkBox = new JCheckBox("CheckBox");
    checkBox.setMnemonic('C');
  }
}

   
  








Related examples in the same category

1.implement Accessible to make your object accessible
2.Setting an Accessible Name for an Image Button
3.Setting a Description for Image Icons
4.Setting a Mnemonic for a Menu for Accessible
5.Associating a Label with a Component
6.Setting a Keyboard Accelerator for a Menu Item
7.A GUI to show accessible information coming from the components in an
8.An example of getting the Accessible information from a Button objectAn example of getting the Accessible information from a Button object
9.Has Displayed Name