List of usage examples for java.awt.event FocusListener interface-usage
From source file TextInputDemo.java
/**
* TextInputDemo.java is a 1.4 application that uses
* these additional files:
* SpringUtilities.java
* ...
*/
From source file de.uka.aifb.com.systemDynamics.gui.ModelExecutionChartPanel.java
/**
* This class implements a panel for drawing the charts of the model execution.
*
* @author Joachim Melcher, Institut AIFB, Universitaet Karlsruhe (TH), Germany
* @version 1.2
*/
From source file edu.ku.brc.af.ui.forms.validation.DataChangeNotifier.java
/**
* Implements several listener interfaces and listens for the various types of notifications
* to figure out if the component has changed.
*
* @code_status Complete
*
From source file org.jcurl.demo.tactics.BroomPromptSwingBean.java
/**
* A Swing-based bean to control a {@link BroomPromptModel}. TODO x and y!
* <p>
* As Swing views are usually tightly coupled to the underlying datamodels
* (which holds at least for the {@link JSpinner}), I'm not quite sure how to
* pipe the changes through
From source file net.sf.jabref.gui.MainTableSelectionListener.java
/** * List event, mouse, key and focus listener for the main table that makes up the * most part of the BasePanel for a single bib database. */ public class MainTableSelectionListener implements ListEventListener<BibtexEntry>, MouseListener, KeyListener, FocusListener {
From source file ch.zhaw.simulation.diagram.charteditor.DefaultNumberAxisEditor.java
/** * A panel for editing the properties of a value axis. */ public class DefaultNumberAxisEditor extends DefaultAxisEditor implements FocusListener { private static final long serialVersionUID = 1L;
From source file net.sf.jabref.gui.maintable.MainTableSelectionListener.java
/** * List event, mouse, key and focus listener for the main table that makes up the * most part of the BasePanel for a single bib database. */ public class MainTableSelectionListener implements ListEventListener<BibEntry>, MouseListener, KeyListener, FocusListener {
From source file org.eclipse.birt.chart.device.swing.SwingEventHandler.java
/** * Provides a reference implementation into handling events generated on a SWING * JComponent with a rendered chart. */ public final class SwingEventHandler implements MouseListener, MouseMotionListener, KeyListener, FocusListener {
From source file com.github.fritaly.dualcommander.DirectoryBrowser.java
public class DirectoryBrowser extends JPanel implements ListSelectionListener, ChangeEventSource, KeyListener, MouseListener, HasParentDirectory, FocusListener, ColumnEventListener { private static final Color EVEN_ROW = Color.WHITE; private static final Color ODD_ROW = Color.decode("#DDDDFF");
From source file org.executequery.gui.editor.autocomplete.QueryEditorAutoCompletePopupProvider.java
public class QueryEditorAutoCompletePopupProvider implements AutoCompletePopupProvider, AutoCompletePopupListener, CaretListener, ConnectionChangeListener, FocusListener { private static final KeyStroke KEY_STROKE_ENTER = KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0); private static final KeyStroke KEY_STROKE_DOWN = KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, 0);