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 BeanContainer.java

public class BeanContainer extends JFrame implements FocusListener{
  protected File m_currentDir = new File(".");
  protected Component m_activeBean;
  protected String m_className = "clock.Clock";
  protected JFileChooser m_chooser = new JFileChooser();
  protected Hashtable m_editors = new Hashtable();

From source file edu.harvard.mcz.imagecapture.ui.FilteringGeogJComboBox.java

/**
 * @author mole
 *
 */
public class FilteringGeogJComboBox extends JComboBox<MCZbaseGeogAuthRec> implements FocusListener {
    private static final long serialVersionUID = -7988464282872345110L;

From source file org.executequery.gui.text.TextUndoManager.java

/**
 * Undo manager for text components. 
 *
 * @author   Takis Diakoumis
 * @version  $Revision: 1487 $
 * @date     $Date: 2015-08-23 22:21:42 +1000 (Sun, 23 Aug 2015) $

From source file net.sf.jabref.gui.AutoCompleteListener.java

/**
 * Created by Morten O. Alver, 16 Feb. 2007
 */
public class AutoCompleteListener extends KeyAdapter implements FocusListener {

    //TODO: The logging behavior in this class is probably too fine-grained and only understandable to its original author

From source file events.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 controlador.ControladorReportes.java

/**
 *
 * @author juan ricaldi
 */
public class ControladorReportes
        implements MouseListener, KeyListener, FocusListener, PropertyChangeListener, ChangeListener, ItemListener {

From source file edu.harvard.mcz.imagecapture.ui.FilteringAgentJComboBox.java

/**
 * @author mole
 *
 */
public class FilteringAgentJComboBox extends JComboBox<MCZbaseAuthAgentName> implements FocusListener {
    private static final long serialVersionUID = -7988464282872345110L;

From source file misc.Picture.java

class Picture extends JComponent implements MouseListener, FocusListener, Accessible {
    Image image;

    public Picture(Image image) {

        this.image = image;

From source file cz.lidinsky.editor.TableCellEditor.java

/**
 *  Choose and return appropriate edit component, for property table.
 *  The decision is based mainly on the datatype of the edited value.
 *  But may depend even on the class to which the property belongs to.
 */
public class TableCellEditor extends AbstractCellEditor implements javax.swing.table.TableCellEditor,

From source file net.sf.jabref.gui.autocompleter.AutoCompleteListener.java

/**
 * Created by Morten O. Alver, 16 Feb. 2007
 */
public class AutoCompleteListener extends KeyAdapter implements FocusListener {

    //TODO: The logging behavior in this class is probably too fine-grained and only understandable to its original author