@Override protected FocusModel<TreeItem<T>> getFocusModel() { return getCellContainer().getFocusModel(); }
/** * The FocusModel provides the API through which it is possible to both get * and set the focus on a single item within a ListView. Note that it has a * generic type that must match the type of the ListView itself. * * @return the focus model property. */ public final ObjectProperty<FocusModel<T>> focusModelProperty() { return this.getWrappedControl().focusModelProperty(); }
/** * Sets the FocusModel to be used in the ListView. * * @param value * the focus model. */ public final void setFocusModel(FocusModel<T> value) { this.getWrappedControl().setFocusModel(value); }
/** * Returns the currently installed FocusModel. * * @return the focus model. */ public final FocusModel<T> getFocusModel() { return this.getWrappedControl().getFocusModel(); }