Package de.gsi.chart.ui.css
Class CssPropertyFactory.StylishBooleanProperty
- java.lang.Object
-
- javafx.beans.binding.BooleanExpression
-
- javafx.beans.property.ReadOnlyBooleanProperty
-
- javafx.beans.property.BooleanProperty
-
- javafx.beans.property.BooleanPropertyBase
-
- javafx.css.StyleableBooleanProperty
-
- javafx.css.SimpleStyleableBooleanProperty
-
- de.gsi.chart.ui.css.CssPropertyFactory.StylishBooleanProperty
-
- All Implemented Interfaces:
javafx.beans.Observable,javafx.beans.property.Property<java.lang.Boolean>,javafx.beans.property.ReadOnlyProperty<java.lang.Boolean>,javafx.beans.value.ObservableBooleanValue,javafx.beans.value.ObservableValue<java.lang.Boolean>,javafx.beans.value.WritableBooleanValue,javafx.beans.value.WritableValue<java.lang.Boolean>,javafx.css.StyleableProperty<java.lang.Boolean>
- Enclosing class:
- CssPropertyFactory<S extends javafx.css.Styleable>
public class CssPropertyFactory.StylishBooleanProperty extends javafx.css.SimpleStyleableBooleanProperty
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.function.BinaryOperator<java.lang.Boolean>filterprotected java.lang.RunnablepostInvalidateActionprotected java.lang.RunnablepreInvalidateAction
-
Constructor Summary
Constructors Constructor Description StylishBooleanProperty(javafx.css.Styleable styleableBean, java.lang.String propertyName, boolean initialValue, boolean inherits, java.util.function.BinaryOperator<java.lang.Boolean> filter, java.lang.Runnable... invalidateActions)The constructor of theStylishBooleanProperty.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidset(boolean v)-
Methods inherited from class javafx.css.SimpleStyleableBooleanProperty
getBean, getCssMetaData, getName
-
Methods inherited from class javafx.beans.property.BooleanPropertyBase
addListener, addListener, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, toString, unbind
-
Methods inherited from class javafx.beans.property.BooleanProperty
asObject, bindBidirectional, booleanProperty, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.binding.BooleanExpression
and, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or
-
-
-
-
Constructor Detail
-
StylishBooleanProperty
public StylishBooleanProperty(javafx.css.Styleable styleableBean, java.lang.String propertyName, boolean initialValue, boolean inherits, java.util.function.BinaryOperator<java.lang.Boolean> filter, java.lang.Runnable... invalidateActions)The constructor of theStylishBooleanProperty.- Parameters:
styleableBean- the bean of thisBooleanPropertypropertyName- the name of thisBooleanPropertyinitialValue- the initial value of the wrappedObjectinherits- whether or not the CSS style can be inherited by child nodesfilter- possibility to modify the new value based on old and updated valueinvalidateActions- lambda expressions executed after and before invalidation
-
-