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 | Class and Description |
---|---|
static class |
TableView.TableViewSelectionModel<S>
A simple extension of the
SelectionModel abstract class to
allow for special support for TableView controls. |
Modifier and Type | Field and Description |
---|---|
private MultipleSelectionModel<TreeItem<T>> |
TreeViewBuilder.selectionModel |
private MultipleSelectionModel<T> |
ListViewBuilder.selectionModel |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<MultipleSelectionModel<TreeItem<T>>> |
TreeView.selectionModel |
private ObjectProperty<MultipleSelectionModel<T>> |
ListView.selectionModel |
Modifier and Type | Method and Description |
---|---|
MultipleSelectionModel<TreeItem<T>> |
TreeView.getSelectionModel()
Returns the currently installed selection model.
|
MultipleSelectionModel<T> |
ListView.getSelectionModel()
Returns the currently installed selection model.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<MultipleSelectionModel<TreeItem<T>>> |
TreeView.selectionModelProperty()
The SelectionModel provides the API through which it is possible
to select single or multiple items within a TreeView, as well as inspect
which rows have been selected by the user.
|
ObjectProperty<MultipleSelectionModel<T>> |
ListView.selectionModelProperty()
The SelectionModel provides the API through which it is possible
to select single or multiple items within a ListView, as well as inspect
which items have been selected by the user.
|
Modifier and Type | Method and Description |
---|---|
void |
MultipleSelectionModelBuilder.applyTo(MultipleSelectionModel<T> x) |
B |
ListViewBuilder.selectionModel(MultipleSelectionModel<T> x)
Set the value of the
selectionModel property for the instance constructed by this builder. |
B |
TreeViewBuilder.selectionModel(MultipleSelectionModel<TreeItem<T>> x)
Set the value of the
selectionModel property for the instance constructed by this builder. |
void |
ListView.setSelectionModel(MultipleSelectionModel<T> value)
Sets the
MultipleSelectionModel to be used in the ListView. |
void |
TreeView.setSelectionModel(MultipleSelectionModel<TreeItem<T>> value)
Sets the
MultipleSelectionModel to be used in the TreeView. |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to