Example usage for Java java.awt Event fields, constructors, methods, implement or subclass
The text is from its open source code.
int | SHIFT_MASK This flag indicates that the Shift key was down when the event occurred. |
int | CTRL_MASK This flag indicates that the Control key was down when the event occurred. |
int | META_MASK This flag indicates that the Meta key was down when the event occurred. |
int | ALT_MASK This flag indicates that the Alt key was down when the event occurred. |
int | HOME The Home key, a non-ASCII action key. |
int | END The End key, a non-ASCII action key. |
int | PGUP The Page Up key, a non-ASCII action key. |
int | PGDN The Page Down key, a non-ASCII action key. |
int | UP The Up Arrow key, a non-ASCII action key. |
int | DOWN The Down Arrow key, a non-ASCII action key. |
int | LEFT The Left Arrow key, a non-ASCII action key. |
int | RIGHT The Right Arrow key, a non-ASCII action key. |
int | F1 The F1 function key, a non-ASCII action key. |
int | F2 The F2 function key, a non-ASCII action key. |
int | F3 The F3 function key, a non-ASCII action key. |
int | F4 The F4 function key, a non-ASCII action key. |
int | F5 The F5 function key, a non-ASCII action key. |
int | F6 The F6 function key, a non-ASCII action key. |
int | F7 The F7 function key, a non-ASCII action key. |
int | F8 The F8 function key, a non-ASCII action key. |
int | F9 The F9 function key, a non-ASCII action key. |
int | F10 The F10 function key, a non-ASCII action key. |
int | F11 The F11 function key, a non-ASCII action key. |
int | F12 The F12 function key, a non-ASCII action key. |
int | WINDOW_DESTROY The user has asked the window manager to kill the window. |
int | KEY_PRESS The user has pressed a normal key. |
int | KEY_RELEASE The user has released a normal key. |
int | KEY_ACTION The user has pressed a non-ASCII action key. |
int | KEY_ACTION_RELEASE The user has released a non-ASCII action key. |
int | MOUSE_DOWN The user has pressed the mouse button. |
int | LIST_SELECT An item in a list has been selected. |
int | LIST_DESELECT An item in a list has been deselected. |
boolean | controlDown() NOTE: The Event class is obsolete and is available only for backwards compatibility. |