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.
|
javafx.scene.control.cell |
The
javafx.scene.control.cell package is where all cell-related
classes are located, other than the core classes such as
Cell , IndexedCell ,
ListCell , TreeCell ,
and TableCell . |
Modifier and Type | Field and Description |
---|---|
private ListView<T> |
ListView.ListViewBitSetSelectionModel.listView
*
Internal properties *
*
|
private ListView<T> |
ListView.ListViewFocusModel.listView |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ListView.cellFactory |
private ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ComboBox.cellFactory
Providing a custom cell factory allows for complete customization of the
rendering of items in the ComboBox.
|
private Callback<ListView<T>,ListCell<T>> |
ListViewBuilder.cellFactory |
private Callback<ListView<T>,ListCell<T>> |
ComboBoxBuilder.cellFactory |
private ReadOnlyObjectWrapper<ListView<T>> |
ListCell.listView
The ListView associated with this Cell.
|
private static com.sun.javafx.css.StyleableProperty<ListView,Orientation> |
ListView.StyleableProperties.ORIENTATION |
Modifier and Type | Method and Description |
---|---|
ListView<T> |
ListViewBuilder.build()
Make an instance of
ListView based on the properties set on this builder. |
ListView<T> |
ListCell.getListView()
Gets the value of the property listView.
|
ListView<T> |
ListView.EditEvent.getSource()
Returns the ListView upon which the edit took place.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ListView.cellFactoryProperty()
Setting a custom cell factory has the effect of deferring all cell
creation, allowing for total customization of the cell.
|
ObjectProperty<Callback<ListView<T>,ListCell<T>>> |
ComboBox.cellFactoryProperty()
Providing a custom cell factory allows for complete customization of the
rendering of items in the ComboBox.
|
Callback<ListView<T>,ListCell<T>> |
ListView.getCellFactory()
Returns the current cell factory.
|
Callback<ListView<T>,ListCell<T>> |
ComboBox.getCellFactory()
Gets the value of the property cellFactory.
|
ReadOnlyObjectProperty<ListView<T>> |
ListCell.listViewProperty()
The ListView associated with this Cell.
|
Modifier and Type | Method and Description |
---|---|
void |
ListViewBuilder.applyTo(ListView<T> x) |
private void |
ListCell.setListView(ListView<T> value) |
void |
ListCell.updateListView(ListView<T> listView)
Updates the ListView associated with this Cell.
|
Modifier and Type | Method and Description |
---|---|
B |
ListViewBuilder.cellFactory(Callback<ListView<T>,ListCell<T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
B |
ComboBoxBuilder.cellFactory(Callback<ListView<T>,ListCell<T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
void |
ListView.setCellFactory(Callback<ListView<T>,ListCell<T>> value)
Sets a new cell factory to use in the ListView.
|
void |
ComboBox.setCellFactory(Callback<ListView<T>,ListCell<T>> value)
Sets the value of the property cellFactory.
|
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.
|
ListView.ListViewBitSetSelectionModel(ListView<T> listView)
*
Constructors *
*
|
ListView.ListViewFocusModel(ListView<T> listView) |
Modifier and Type | Method and Description |
---|---|
static Callback<ListView<java.lang.String>,ListCell<java.lang.String>> |
TextFieldListCell.forListView()
|
static <T> Callback<ListView<T>,ListCell<T>> |
CheckBoxListCell.forListView(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in ListView controls.
|
static <T> Callback<ListView<T>,ListCell<T>> |
CheckBoxListCell.forListView(Callback<T,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in ListView controls.
|
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(ObservableList<T> items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
TextFieldListCell.forListView(StringConverter<T> converter)
|
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(StringConverter<T> converter,
T... items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(StringConverter<T> converter,
T... items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(T... items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(T... items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to