Example usage for java.awt.event KeyEvent VK_SEPARATER

List of usage examples for java.awt.event KeyEvent VK_SEPARATER

Introduction

In this page you can find the example usage for java.awt.event KeyEvent VK_SEPARATER.

Prototype

int VK_SEPARATER

To view the source code for java.awt.event KeyEvent VK_SEPARATER.

Click Source Link

Document

This constant is obsolete, and is included only for backwards compatibility.

Usage

From source file:Main.java

public void keyPressed(KeyEvent evt) {
    int keyCode = evt.getKeyCode();

    if (keyCode == KeyEvent.VK_SEPARATER) {
        System.out.println("KeyEvent.VK_SEPARATER");
    }//  w  w w . j a  v  a  2  s  . co  m
}