Java Swing Tutorial - Java FocusEvent FOCUS_LOST








Syntax

FocusEvent.FOCUS_LOST has the following syntax.

public static final int FOCUS_LOST

Example

In the following code shows how to use FocusEvent.FOCUS_LOST field.

//from  ww w  .ja v a 2s .  c  o m
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;

import javax.swing.JFrame;
import javax.swing.JTextField;

public class Main {

  public static void main(String[] a) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JTextField textField = new JTextField("A TextField");
    textField.addFocusListener(new FocusListener() {
      public void focusGained(FocusEvent e) {
        displayMessage("Focus gained", e);
      }

      public void focusLost(FocusEvent e) {
        displayMessage("Focus lost", e);
      }
      void displayMessage(String prefix, FocusEvent e) {
        System.out.println(e.getID() == FocusEvent.FOCUS_LOST);
      }
    });
    frame.add(textField,"North");
    frame.add(new JTextField(),"South");
    frame.setSize(300, 200);
    frame.setVisible(true);
  }
}