Uses of Interface
javafx.beans.value.ObservableBooleanValue
Packages that use ObservableBooleanValue
-
Uses of ObservableBooleanValue in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableBooleanValueModifier and TypeClassDescriptionclass
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.class
ABooleanExpression
is aObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableBooleanValueModifier and TypeMethodDescriptionstatic BooleanBinding
Bindings.and
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.BooleanExpression.and
(ObservableBooleanValue other) Creates a newBooleanExpression
that performs the conditional AND-operation on thisBooleanExpression
and aObservableBooleanValue
.static BooleanExpression
BooleanExpression.booleanExpression
(ObservableBooleanValue value) Returns aBooleanExpression
that wraps aObservableBooleanValue
.static BooleanBinding
Bindings.not
(ObservableBooleanValue op) Creates aBooleanBinding
that calculates the inverse of the value of aObservableBooleanValue
.static BooleanBinding
Bindings.or
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.BooleanExpression.or
(ObservableBooleanValue other) Creates a newBooleanExpression
that performs the conditional OR-operation on thisBooleanExpression
and aObservableBooleanValue
. -
Uses of ObservableBooleanValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableBooleanValueModifier and TypeClassDescriptionclass
This class provides a full implementation of aProperty
wrapping aboolean
value.class
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
Super class for all readonly properties wrapping aboolean
.class
Base class for all readonly properties wrapping aboolean
.class
This class provides a full implementation of aProperty
wrapping aboolean
value. -
Uses of ObservableBooleanValue in javafx.css
Classes in javafx.css that implement ObservableBooleanValueModifier and TypeClassDescriptionclass
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.