Uses of Interface
javafx.scene.input.Command
| Package | Description |
|---|---|
| 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.
|
-
Uses of Command in javafx.scene.control
Methods in javafx.scene.control that return Command Modifier and Type Method Description Command<?>ButtonBase. getCommand()Gets the value of the property command.Methods in javafx.scene.control that return types with arguments of type Command Modifier and Type Method Description ObjectProperty<Command<?>>ButtonBase. commandProperty()The button's command, which is invoked whenever the button is fired.Methods in javafx.scene.control with parameters of type Command Modifier and Type Method Description voidButtonBase. setCommand(Command<?> command)Sets the value of the property command. -
Uses of Command in javafx.scene.input
Classes in javafx.scene.input that implement Command Modifier and Type Class Description classCommandBase<T>classFutureCommand<T>A command implementation that usesCompletableFutureto encapsulate its operation.classSimpleCommand<T>A command implementation that synchronously invokes a user-specified method.Methods in javafx.scene.input that return Command Modifier and Type Method Description Command<Void>FutureCommand. getCancelCommand()Gets a command that can be used to cancel the currently running operation.Command<?>EventBinding. getCommand()Gets the value of the property command.Methods in javafx.scene.input that return types with arguments of type Command Modifier and Type Method Description ObjectProperty<Command<?>>EventBinding. commandProperty()Methods in javafx.scene.input with parameters of type Command Modifier and Type Method Description voidEventBinding. setCommand(Command<?> command)Sets the value of the property command.