Package | Description |
---|---|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Method and Description |
---|---|
ObservableMap<KeyCombination,Runnable> |
Scene.getAccelerators()
Gets the list of accelerators for this
Scene . |
ObservableMap<KeyCombination,ObservableList<Mnemonic>> |
Scene.getMnemonics()
Gets the list of mnemonics for this
Scene . |
Modifier and Type | Method and Description |
---|---|
KeyCombination |
MenuItem.getAccelerator()
Gets the value of the property accelerator.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<KeyCombination> |
MenuItem.acceleratorProperty()
The accelerator property enables accessing the associated action in one keystroke.
|
Modifier and Type | Method and Description |
---|---|
void |
MenuItem.setAccelerator(KeyCombination value)
Sets the value of the property accelerator.
|
Modifier and Type | Class and Description |
---|---|
class |
KeyCharacterCombination
This class represents a key combination in which the main key is specified
by its character.
|
class |
KeyCodeCombination
This class represents a key combination in which the main key is specified
by its
KeyCode . |
Modifier and Type | Field and Description |
---|---|
static KeyCombination |
KeyCombination.NO_MATCH
A KeyCombination that will match with no events.
|
Modifier and Type | Method and Description |
---|---|
KeyCombination |
Mnemonic.getKeyCombination()
Returns the
KeyCombination |
static KeyCombination |
KeyCombination.keyCombination(String name)
Constructs a new
KeyCombination from the specified string. |
static KeyCombination |
KeyCombination.valueOf(String value)
Constructs a new
KeyCombination from the specified string. |
Modifier and Type | Method and Description |
---|---|
void |
Mnemonic.setKeyCombination(KeyCombination keyCombination)
Sets the
KeyCombination |
Constructor and Description |
---|
Mnemonic(Node node,
KeyCombination keyCombination)
|
Modifier and Type | Method and Description |
---|---|
KeyCombination |
Stage.getFullScreenExitKeyCombination()
Get the current sequence used to exit Full Screen mode.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<KeyCombination> |
Stage.fullScreenExitKeyProperty()
Get the property for the Full Screen exit key combination.
|
Modifier and Type | Method and Description |
---|---|
void |
Stage.setFullScreenExitKeyCombination(KeyCombination keyCombination)
Specifies the KeyCombination that will allow the user to exit full screen
mode.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.