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.
|
Modifier and Type | Method and Description |
---|---|
static <S> EventType<TreeTableView.EditEvent<S>> |
TreeTableView.editAnyEvent()
An EventType that indicates some edit event has occurred.
|
static <S> EventType<TreeTableView.EditEvent<S>> |
TreeTableView.editCancelEvent()
An EventType used to indicate that an edit event has just been canceled
within the TreeTableView upon which the event was fired.
|
static <S> EventType<TreeTableView.EditEvent<S>> |
TreeTableView.editCommitEvent()
An EventType that is used to indicate that an edit in a TreeTableView has been
committed.
|
static <S> EventType<TreeTableView.EditEvent<S>> |
TreeTableView.editStartEvent()
An EventType used to indicate that an edit event has started within the
TreeTableView upon which the event was fired.
|
Constructor and Description |
---|
EditEvent(TreeTableView<S> source,
EventType<? extends TreeTableView.EditEvent> eventType,
TreeItem<S> treeItem,
S oldValue,
S newValue)
Creates a new EditEvent instance to represent an edit event.
|
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.