Uses of Class
javafx.scene.control.TreeView.EditEvent
Package
Description
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.
-
Uses of TreeView.EditEvent in javafx.scene.control
Modifier and TypeMethodDescriptionstatic <T> EventType
<TreeView.EditEvent<T>> TreeView.editAnyEvent()
An EventType that indicates some edit event has occurred.static <T> EventType
<TreeView.EditEvent<T>> TreeView.editCancelEvent()
An EventType used to indicate that an edit event has just been canceled within the TreeView upon which the event was fired.static <T> EventType
<TreeView.EditEvent<T>> TreeView.editCommitEvent()
An EventType that is used to indicate that an edit in a TreeView has been committed.static <T> EventType
<TreeView.EditEvent<T>> TreeView.editStartEvent()
An EventType used to indicate that an edit event has started within the TreeView upon which the event was fired.final EventHandler
<TreeView.EditEvent<T>> TreeView.getOnEditCancel()
Returns theEventHandler
that will be called when the user cancels an edit.final EventHandler
<TreeView.EditEvent<T>> TreeView.getOnEditCommit()
Returns theEventHandler
that will be called when the user commits an edit.final EventHandler
<TreeView.EditEvent<T>> TreeView.getOnEditStart()
Returns theEventHandler
that will be called when the user begins an edit.final ObjectProperty
<EventHandler<TreeView.EditEvent<T>>> TreeView.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.final ObjectProperty
<EventHandler<TreeView.EditEvent<T>>> TreeView.onEditCommitProperty()
This property is used when the user performs an action that should result in their editing input being persisted.final ObjectProperty
<EventHandler<TreeView.EditEvent<T>>> TreeView.onEditStartProperty()
This event handler will be fired when the user successfully initiates editing.Modifier and TypeMethodDescriptionfinal void
TreeView.setOnEditCancel
(EventHandler<TreeView.EditEvent<T>> value) Sets theEventHandler
that will be called when the user cancels an edit.final void
TreeView.setOnEditCommit
(EventHandler<TreeView.EditEvent<T>> value) Sets theEventHandler
that will be called when the user commits an edit.final void
TreeView.setOnEditStart
(EventHandler<TreeView.EditEvent<T>> value) Sets theEventHandler
that will be called when the user begins an edit.