Preventing a Component from Gaining the Focus : Focus Event « Event « Java






Preventing a Component from Gaining the Focus

 

import javax.swing.JFrame;

public class Main {
  public static void main(String[] argv) throws Exception {
    JFrame frame = new JFrame();

    frame.setFocusable(false);

  }
}

   
  








Related examples in the same category

1.Setting Focus Traversal Keys in a Component
2.Change the forward focus traversal keys for a component
3.JComponent.setFocusTraversalKeys(int arg0, Set arg1)
4.KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS
5.Setting Focus Traversal Keys for the Entire Application
6.Changes the focus traversal keys for the entire application.
7.Change the backward focus traversal keys for the application
8.KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS
9.KeyboardFocusManager.getCurrentKeyboardFocusManager().getDefaultFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS)
10.Remove all forward focus traversal keys for the application
11.Remove all backward focus traversal keys for the application
12.Modify a component: press space bar or F2 to move focus to next focusable component.
13.Press shift space or shift F2 to move the focus to the previous focusable component.
14.Setting the Initial Focused Component in a Window
15.Finding the Next Focusable Component
16.Find the previous focusable component
17.Determining If a Focus Lost Is Temporary or Permanent
18.Determining the Opposite Component of a Focus Event
19.Validating a JTextField When Permanently Losing the Focus
20.Removing the Focus from the Application
21.Use Focus Events in Swing
22.Null is returned if none of the components in this application has the focus
23.Null is returned if none of the windows in this application has the focus
24.Listening to All Focus Changes Between Components and windows