java.lang.Object
javafx.scene.input.Mnemonic
This class is used when creating a Mnemonic.
The Mnemonic is constructed with a
Node and a KeyCombination.
When a Mnemonic is registered on a Scene, and the KeyCombination reaches the Scene unconsumed,
then the target Node will be sent an ActionEvent.
Controls should use their MnemonicParsing property when adding Mnemonics.
Mnemonics will not be displayed on all platforms, but the api will still be present.
- Since:
- JavaFX 2.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidfire()Fire theActionEventReturns theKeyCombinationgetNode()Returns theNodevoidsetKeyCombination(KeyCombination keyCombination) Sets theKeyCombinationvoidSets theNode
-
Constructor Details
-
Mnemonic
- Parameters:
node- theNodethat will receive theActionEvent.keyCombination- theKeyCombinationthat will trigger the Mnemonic.
-
-
Method Details
-
getKeyCombination
Returns theKeyCombination- Returns:
- the
KeyCombination
-
setKeyCombination
Sets theKeyCombination- Parameters:
keyCombination- theKeyCombination
-
getNode
Returns theNode- Returns:
- the
Node
-
setNode
Sets theNode- Parameters:
node- theNode- Since:
- JavaFX 2.2
-
fire
public void fire()Fire theActionEvent
-