Example usage for java.awt.event FocusListener interface-usage

List of usage examples for java.awt.event FocusListener interface-usage

Introduction

In this page you can find the example usage for java.awt.event FocusListener interface-usage.

Usage

From source file MenuItemChooser.java

public class MenuItemChooser extends JPanel implements ActionListener, FocusListener {
    MenuItem[] items = null;
    int currMenuItem = 0;

    JLabel itemName = null;
    JLabel itemType = null;

From source file AnimatedTextField.java

public class AnimatedTextField extends JPanel implements FocusListener {

    Font font = new Font("Arial", Font.PLAIN, 10);
    Color darkSlateGray = new Color(49, 79, 79);
    Color dimGray = new Color(105, 105, 105);
    Color slateGray = new Color(112, 138, 144);

From source file AnimatedPasswordField.java

public class AnimatedPasswordField extends JPanel implements FocusListener {

    Font font = new Font("Arial", Font.PLAIN, 10);
    Color darkSlateGray = new Color(49, 79, 79);
    Color dimGray = new Color(105, 105, 105);
    Color slateGray = new Color(112, 138, 144);

From source file cool.pandora.modeller.ui.jpanel.base.BagInfoForm.java

/**
 * BagInfoForm.
 *
 * @author gov.loc
 */
public class BagInfoForm extends AbstractForm implements FocusListener {

From source file components.TextInputDemo.java

/**
 * TextInputDemo.java uses these additional files:
 *   SpringUtilities.java
 *   ...
 */
public class TextInputDemo extends JPanel implements ActionListener, FocusListener {

From source file org.openmicroscopy.shoola.agents.imviewer.util.player.MoviePlayerControl.java

/** 
 * The movie player controller.
 *
 * @author  Jean-Marie Burel     
 *             <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
 * @author   Andrea Falconi &nbsp;&nbsp;&nbsp;&nbsp;

From source file FocusEventDemo.java

public class FocusEventDemo extends JFrame implements FocusListener {
    final static String newline = "\n";
    JTextArea display;

    public FocusEventDemo(String name) {
        super(name);

From source file org.openmicroscopy.shoola.util.ui.NumericalTextField.java

/**
 * A text field containing only numerical value.
 *
 * @author  Jean-Marie Burel &nbsp;&nbsp;&nbsp;&nbsp;
 * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
 * @author Donald MacDonald &nbsp;&nbsp;&nbsp;&nbsp;

From source file com.dbschools.quickquiz.client.taker.MainWindow.java

/**
 * Quiz taker client application.
 * 
 * @author David C. Briccetti
 */
public final class MainWindow extends AbstractClientWindow implements FocusListener, TakerReceivedMessageProcessor {

From source file FocusEventDemo.java

public class FocusEventDemo extends JPanel implements FocusListener {
    final static String newline = "\n";

    JTextArea display;

    public FocusEventDemo() {