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

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

Introduction

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

Usage

From source file Main.java

class MyButtonUI extends BasicButtonUI implements java.io.Serializable, MouseListener, KeyListener {

    private final static MyButtonUI m_buttonUI = new MyButtonUI();

    protected Border m_borderRaised = UIManager.getBorder("Button.border");

From source file com.github.fritaly.dualcommander.TabbedPane.java

public class TabbedPane extends JTabbedPane implements KeyListener, ChangeListener, FocusListener {

    private static final long serialVersionUID = 8522448669013461274L;

    private final Logger logger = Logger.getLogger(this.getClass());

From source file net.lmxm.ute.gui.validation.AbstractInputValidator.java

/**
 * The Class AbstractInputValidator.
 */
public abstract class AbstractInputValidator extends InputValidator implements KeyListener {

    /** The input component. */

From source file com.egangotri.transliteratorAsSwing.TransliteratorJFrame.java

public class TransliteratorJFrame extends JFrame implements ActionListener, KeyListener, ClipboardOwner {

    JMenuBar menubar = new JMenuBar();

    JMenu file, help;

From source file kenh.xscript.elements.Debug.java

/**
 * Debug interface.
 * 
 * @author Kenneth
 * @since 1.0
 *

From source file controlador.ControladorReportes.java

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

From source file BouncingBall.java

public class BouncingBall extends Applet implements ActionListener, KeyListener {
    private Button go = new Button("Go");

    private TransformGroup objTrans;

    private Transform3D trans = new Transform3D();

From source file events.KeyEventDemo.java

public class KeyEventDemo extends JFrame implements KeyListener, ActionListener {
    JTextArea displayArea;
    JTextField typingArea;
    static final String newline = System.getProperty("line.separator");

    public static void main(String[] args) {

From source file net.sf.firemox.ui.wizard.Wizard.java

/**
 * @author <a href="mailto:fabdouglas@users.sourceforge.net">Fabrice Daugan </a>
 * @since 0.82
 * @since 0.86 JDialog icon updated
 * @since 0.86 Auto-mnemonic
 */

From source file pl.otros.logview.gui.actions.MarkAllFoundAction.java

public class MarkAllFoundAction extends OtrosAction implements ConfigurationListener, KeyListener {

    private MarkerColors markerColors = MarkerColors.Aqua;
    private SearchMode searchMode = SearchMode.STRING_CONTAINS;

    public MarkAllFoundAction(OtrosApplication otrosApplication) {