Uses of Interface
org.controlsfx.control.CheckModel
Packages that use CheckModel
Package
Description
A package containing a number of useful controls-related classes that do not
exist in the base JavaFX distribution.
-
Uses of CheckModel in org.controlsfx.control
Subinterfaces of CheckModel in org.controlsfx.controlMethods in org.controlsfx.control that return CheckModelModifier and TypeMethodDescriptionfinal CheckModel
<javafx.scene.control.TreeItem<T>> CheckTreeView.getCheckModel()
Returns the currently installed check model.Methods in org.controlsfx.control that return types with arguments of type CheckModelModifier and TypeMethodDescriptionfinal javafx.beans.property.ObjectProperty
<CheckModel<javafx.scene.control.TreeItem<T>>> CheckTreeView.checkModelProperty()
The check model provides the API through which it is possible to check single or multiple items within a CheckTreeView, as well as inspect which items have been checked by the user.Methods in org.controlsfx.control with parameters of type CheckModelModifier and TypeMethodDescriptionfinal void
CheckTreeView.setCheckModel
(CheckModel<javafx.scene.control.TreeItem<T>> value) Sets the 'check model' to be used in the CheckTreeView - this is the code that is responsible for representing the selected state of eachCheckBox
- that is, whether eachCheckBox
is checked or not (and not to be confused with the selection model concept, which is used in the TreeView control to represent the selection state of each row)..