static class ListView.ListViewFocusModel<T> extends FocusModel<T>
| Modifier and Type | Field and Description |
|---|---|
private int |
itemCount |
private ListChangeListener<T> |
itemsContentListener |
private InvalidationListener |
itemsObserver |
private ListView<T> |
listView |
private WeakListChangeListener<T> |
weakItemsContentListener |
| Constructor and Description |
|---|
ListViewFocusModel(ListView<T> listView) |
| Modifier and Type | Method and Description |
|---|---|
protected int |
getItemCount()
Returns the number of items in the data model that underpins the control.
|
protected T |
getModelItem(int index)
Returns the item at the given index.
|
private boolean |
isEmpty() |
private void |
updateItemCount() |
private void |
updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
focus, focusedIndexProperty, focusedItemProperty, focusNext, focusPrevious, getFocusedIndex, getFocusedItem, isFocused, setFocusedIndex, setFocusedItemprivate int itemCount
private final InvalidationListener itemsObserver
private final ListChangeListener<T> itemsContentListener
private WeakListChangeListener<T> weakItemsContentListener
private void updateItemsObserver(ObservableList<T> oldList, ObservableList<T> newList)
protected int getItemCount()
FocusModellistView.getItems().size(). The valid range of focusable
indices is between 0 and whatever is returned by this method.getItemCount in class FocusModel<T>protected T getModelItem(int index)
FocusModellistView.getItems().get(index).getModelItem in class FocusModel<T>index - The index of the item that is requested from the underlying
data model.private boolean isEmpty()
private void updateItemCount()