public static interface AdapterFactoryCellFactory.ICellEditHandler
Cells
created by the factory will delegate calls to their editing methods to
the first handler in
AdapterFactoryCellFactory#cellEditHandlers that returns true
for canEdit(Cell) .| Modifier and Type | Method and Description |
|---|---|
void |
cancelEdit(javafx.scene.control.Cell<?> cell)
Delegate for
Cell.cancelEdit() |
boolean |
canEdit(javafx.scene.control.Cell<?> cell)
Whether editing treeCell can be handled
|
void |
commitEdit(javafx.scene.control.Cell<?> cell,
java.lang.Object newValue)
Delegate for
Cell.commitEdit(Object) |
void |
startEdit(javafx.scene.control.Cell<?> cell)
Delegate for
Cell.startEdit() |
boolean canEdit(javafx.scene.control.Cell<?> cell)
cell - the celltrue if editablevoid startEdit(javafx.scene.control.Cell<?> cell)
Cell.startEdit()cell - the cellvoid commitEdit(javafx.scene.control.Cell<?> cell,
java.lang.Object newValue)
Cell.commitEdit(Object)cell - the cellnewValue - the new valuevoid cancelEdit(javafx.scene.control.Cell<?> cell)
Cell.cancelEdit()cell - the cell