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 |
---|---|
(package private) static class |
ChoiceBox.ChoiceBoxSelectionModel<T> |
(package private) static class |
ComboBox.ComboBoxSelectionModel<T> |
(package private) static class |
TabPane.TabPaneSelectionModel
*
Support classes *
*
|
Modifier and Type | Field and Description |
---|---|
private SingleSelectionModel<T> |
ChoiceBoxBuilder.selectionModel
Deprecated.
|
private SingleSelectionModel<Tab> |
TabPaneBuilder.selectionModel
Deprecated.
|
private SingleSelectionModel<T> |
ComboBoxBuilder.selectionModel
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<SingleSelectionModel<T>> |
ChoiceBox.selectionModel
The selection model for the ChoiceBox.
|
private ObjectProperty<SingleSelectionModel<Tab>> |
TabPane.selectionModel |
private ObjectProperty<SingleSelectionModel<T>> |
ComboBox.selectionModel
The selection model for the ComboBox.
|
Modifier and Type | Method and Description |
---|---|
SingleSelectionModel<T> |
ChoiceBox.getSelectionModel() |
SingleSelectionModel<Tab> |
TabPane.getSelectionModel()
Gets the model used for tab selection.
|
SingleSelectionModel<T> |
ComboBox.getSelectionModel() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<SingleSelectionModel<T>> |
ChoiceBox.selectionModelProperty() |
ObjectProperty<SingleSelectionModel<Tab>> |
TabPane.selectionModelProperty()
The selection model used for selecting tabs.
|
ObjectProperty<SingleSelectionModel<T>> |
ComboBox.selectionModelProperty() |
Modifier and Type | Method and Description |
---|---|
B |
ChoiceBoxBuilder.selectionModel(SingleSelectionModel<T> x)
Deprecated.
Set the value of the
selectionModel property for the instance constructed by this builder. |
B |
ComboBoxBuilder.selectionModel(SingleSelectionModel<T> x)
Deprecated.
Set the value of the
selectionModel property for the instance constructed by this builder. |
B |
TabPaneBuilder.selectionModel(SingleSelectionModel<Tab> x)
Deprecated.
Set the value of the
selectionModel property for the instance constructed by this builder. |
void |
ChoiceBox.setSelectionModel(SingleSelectionModel<T> value) |
void |
ComboBox.setSelectionModel(SingleSelectionModel<T> value) |
void |
TabPane.setSelectionModel(SingleSelectionModel<Tab> value)
Sets the model used for tab selection.
|