Spec-Zone .ru
спецификации, руководства, описания, API
|
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 | Field and Description |
---|---|
private EventHandler<ListView.EditEvent<T>> |
ListView.DEFAULT_EDIT_COMMIT_HANDLER
*
Callbacks and Events *
*
|
private ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCancel |
private EventHandler<ListView.EditEvent<T>> |
ListViewBuilder.onEditCancel |
private ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCommit |
private EventHandler<ListView.EditEvent<T>> |
ListViewBuilder.onEditCommit |
private ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditStart |
private EventHandler<ListView.EditEvent<T>> |
ListViewBuilder.onEditStart |
Modifier and Type | Method and Description |
---|---|
static <T> EventType<ListView.EditEvent<T>> |
ListView.editAnyEvent()
An EventType that indicates some edit event has occurred.
|
static <T> EventType<ListView.EditEvent<T>> |
ListView.editCancelEvent()
An EventType used to indicate that an edit event has just been canceled
within the ListView upon which the event was fired.
|
static <T> EventType<ListView.EditEvent<T>> |
ListView.editCommitEvent()
An EventType used to indicate that an edit event has been committed
within the ListView upon which the event was fired.
|
static <T> EventType<ListView.EditEvent<T>> |
ListView.editStartEvent()
An EventType used to indicate that an edit event has started within the
ListView upon which the event was fired.
|
EventHandler<ListView.EditEvent<T>> |
ListView.getOnEditCancel()
Returns the
EventHandler that will be called when the user cancels
an edit. |
EventHandler<ListView.EditEvent<T>> |
ListView.getOnEditCommit()
Returns the
EventHandler that will be called when the user commits
an edit. |
EventHandler<ListView.EditEvent<T>> |
ListView.getOnEditStart()
Returns the
EventHandler that will be called when the user begins
an edit. |
ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.
|
ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCommitProperty()
This property is used when the user performs an action that should
result in their editing input being persisted.
|
ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditStartProperty()
This event handler will be fired when the user successfully initiates
editing.
|
Modifier and Type | Method and Description |
---|---|
B |
ListViewBuilder.onEditCancel(EventHandler<ListView.EditEvent<T>> x)
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditCommit(EventHandler<ListView.EditEvent<T>> x)
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditStart(EventHandler<ListView.EditEvent<T>> x)
Set the value of the
onEditStart property for the instance constructed by this builder. |
void |
ListView.setOnEditCancel(EventHandler<ListView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user cancels
an edit. |
void |
ListView.setOnEditCommit(EventHandler<ListView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user has
completed their editing. |
void |
ListView.setOnEditStart(EventHandler<ListView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user begins
an edit. |
Constructor and Description |
---|
ListView.EditEvent(ListView<T> source,
EventType<? extends ListView.EditEvent<T>> eventType,
T newValue,
int editIndex)
Creates a new EditEvent instance to represent an edit event.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to