Package com.teamdev.jxbrowser.ui.event
Interface KeyReleased
- All Superinterfaces:
KeyEvent
An event indicating that a keyboard key has been released.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault KeyCode
keyCode()
Returns the code of the key.default KeyLocation
Returns the location of the key on the keyboard.default KeyModifiers
Returns the keyboard modifiers applied.static KeyReleased.Builder
newBuilder
(KeyCode keyCode) Creates a newKeyReleased
builder with the given required parameters.
-
Method Details
-
newBuilder
Creates a newKeyReleased
builder with the given required parameters.- Parameters:
keyCode
- the code of the key- Returns:
- a new
KeyReleased.Builder
instance
-
keyCode
Description copied from interface:KeyEvent
Returns the code of the key. -
keyModifiers
Description copied from interface:KeyEvent
Returns the keyboard modifiers applied.- Specified by:
keyModifiers
in interfaceKeyEvent
-
keyLocation
Description copied from interface:KeyEvent
Returns the location of the key on the keyboard.- Specified by:
keyLocation
in interfaceKeyEvent
-