-
- All Implemented Interfaces:
Observable,Property<Boolean>,ReadOnlyProperty<Boolean>,ObservableBooleanValue,ObservableValue<Boolean>,WritableBooleanValue,WritableValue<Boolean>,StyleableProperty<Boolean>
public class SimpleStyleableBooleanProperty extends StyleableBooleanProperty
This class extendsSimpleBooleanPropertyand provides a full implementation of aStyleableProperty. This class is used to make aBooleanProperty, that would otherwise be implemented as aSimpleBooleanProperty, styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
SimpleBooleanProperty,CssMetaData,StyleableProperty,StyleableBooleanProperty
-
-
Constructor Summary
Constructors Constructor Description SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData)The constructor of theSimpleStyleableBooleanProperty.SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, boolean initialValue)The constructor of theSimpleStyleableBooleanProperty.SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableBooleanProperty.SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name, boolean initialValue)The constructor of theSimpleStyleableBooleanProperty.
-
Method Summary
-
Methods declared in class javafx.beans.property.BooleanPropertyBase
bind, fireValueChangedEvent, invalidated, toString
-
Methods declared in class javafx.beans.property.BooleanProperty
asObject, booleanProperty
-
Methods declared in class javafx.beans.property.ReadOnlyBooleanProperty
readOnlyBooleanProperty
-
Methods declared in class javafx.beans.binding.BooleanExpression
and, asString, booleanExpression, booleanExpression, isEqualTo, isNotEqualTo, not, or
-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods declared in interface javafx.beans.Observable
addListener, removeListener
-
Methods declared in interface javafx.beans.value.ObservableBooleanValue
get
-
Methods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods declared in interface javafx.beans.property.Property
bindBidirectional, isBound, unbind, unbindBidirectional
-
Methods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods declared in interface javafx.css.StyleableProperty
applyStyle, getCssMetaData, getStyleOrigin
-
Methods declared in interface javafx.beans.value.WritableBooleanValue
get, set, setValue
-
Methods declared in interface javafx.beans.value.WritableValue
getValue
-
-
-
-
Constructor Detail
-
SimpleStyleableBooleanProperty
public SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData)
The constructor of theSimpleStyleableBooleanProperty.- Parameters:
cssMetaData- the CssMetaData associated with thisStyleableProperty
-
SimpleStyleableBooleanProperty
public SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, boolean initialValue)
The constructor of theSimpleStyleableBooleanProperty.- Parameters:
cssMetaData- the CssMetaData associated with thisStyleablePropertyinitialValue- the initial value of the wrappedObject
-
SimpleStyleableBooleanProperty
public SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name)
The constructor of theSimpleStyleableBooleanProperty.- Parameters:
cssMetaData- the CssMetaData associated with thisStyleablePropertybean- the bean of thisBooleanPropertyname- the name of thisBooleanProperty
-
SimpleStyleableBooleanProperty
public SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name, boolean initialValue)
The constructor of theSimpleStyleableBooleanProperty.- Parameters:
cssMetaData- the CssMetaData associated with thisStyleablePropertybean- the bean of thisBooleanPropertyname- the name of thisBooleanPropertyinitialValue- the initial value of the wrappedObject
-
-