Associating a Label with a Component : Accessible « Swing JFC « Java






Associating a Label with a Component

 
import javax.swing.JLabel;
import javax.swing.JTextField;

public class Main {
  public static void main(String[] argv) throws Exception {
    JTextField component = new JTextField();
    JLabel label = new JLabel("Name:");
    label.setDisplayedMnemonic('N');
    label.setLabelFor(component);
  }
}

   
  








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 Buttons for Accessible
5.Setting a Mnemonic for a Menu for Accessible
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