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

public class Main extends JPanel implements KeyListener {
    public Main() {
        addKeyListener(this);
    }

    public void keyPressed(KeyEvent evt) {

From source file Main.java

public class Main extends JPanel implements KeyListener {
    public Main() {
        addKeyListener(this);
    }

    public void keyPressed(KeyEvent evt) {

From source file Main.java

public class Main extends JFrame implements KeyListener {
    JComboBox<String> combobox = new JComboBox(new String[] { "a", "b", "c" });

    public static void main(String[] args) {
        new Main();
    }

From source file Main.java

public class Main extends JPanel implements KeyListener {

    private Point startPoint = new Point(0, 0);

    private Point endPoint = new Point(0, 0);

From source file SketchPanel.java

public class SketchPanel extends JPanel implements KeyListener {

    private Point startPoint = new Point(0, 0);

    private Point endPoint = new Point(0, 0);

From source file Main.java

public class Main extends JFrame implements KeyListener, ActionListener {
    JTextField typingArea;

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

From source file Main.java

public class Main 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 Main.java

public class Main 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 Main.java

public class Main 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 com.aw.swing.mvp.cmp.pick.PickKeyListener.java

/**
 * Date: Sep 21, 2007
 */
public class PickKeyListener implements KeyListener {
    protected final Log logger = LogFactory.getLog(getClass());
    private Pick pick;