-
- All Implemented Interfaces:
Observable
,Property<Boolean>
,ReadOnlyProperty<Boolean>
,ObservableBooleanValue
,ObservableValue<Boolean>
,WritableBooleanValue
,WritableValue<Boolean>
,StyleableProperty<Boolean>
- Direct Known Subclasses:
SimpleStyleableBooleanProperty
public abstract class StyleableBooleanProperty extends BooleanPropertyBase implements StyleableProperty<Boolean>
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
. The methodStyleableProperty.getCssMetaData()
is not implemented. This class is used to make aBooleanProperty
, that would otherwise be implemented as aBooleanPropertyBase
, styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
BooleanPropertyBase
,CssMetaData
,StyleableProperty
-
-
Constructor Summary
Constructors Constructor Description StyleableBooleanProperty()
The constructor of theStyleableBooleanProperty
.StyleableBooleanProperty(boolean initialValue)
The constructor of theStyleableBooleanProperty
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyStyle(StyleOrigin origin, Boolean v)
This method is called from CSS code to set the value of the property.void
bind(ObservableValue<? extends Boolean> observable)
Create a unidirection binding for thisProperty
.StyleOrigin
getStyleOrigin()
Tells the origin of the value of the property.void
set(boolean v)
Set the wrapped value.-
Methods inherited from class javafx.beans.binding.BooleanExpression
and, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or
-
Methods inherited from class javafx.beans.property.BooleanProperty
asObject, bindBidirectional, booleanProperty, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.property.BooleanPropertyBase
addListener, addListener, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, toString, unbind
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.value.ObservableValue
getValue
-
Methods inherited from class javafx.beans.property.ReadOnlyBooleanProperty
readOnlyBooleanProperty
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from interface javafx.css.StyleableProperty
getCssMetaData
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue, setValue
-
-
-
-
Constructor Detail
-
StyleableBooleanProperty
public StyleableBooleanProperty()
The constructor of theStyleableBooleanProperty
.
-
StyleableBooleanProperty
public StyleableBooleanProperty(boolean initialValue)
The constructor of theStyleableBooleanProperty
.- Parameters:
initialValue
- the initial value of the wrappedObject
-
-
Method Detail
-
applyStyle
public void applyStyle(StyleOrigin origin, Boolean v)
This method is called from CSS code to set the value of the property.- Specified by:
applyStyle
in interfaceStyleableProperty<Boolean>
- Parameters:
origin
- the originv
- the value
-
bind
public void bind(ObservableValue<? extends Boolean> observable)
Create a unidirection binding for thisProperty
.Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated. Note:
- Specified by:
bind
in interfaceProperty<Boolean>
- Overrides:
bind
in classBooleanPropertyBase
- Parameters:
observable
- The observable thisProperty
should be bound to.
-
set
public void set(boolean v)
Set the wrapped value. UnlikeWritableBooleanValue.setValue(java.lang.Boolean)
, this method uses primitive boolean.- Specified by:
set
in interfaceWritableBooleanValue
- Overrides:
set
in classBooleanPropertyBase
- Parameters:
v
- The new value
-
getStyleOrigin
public StyleOrigin getStyleOrigin()
Tells the origin of the value of the property. This is needed to determine whether or not CSS can override the value.- Specified by:
getStyleOrigin
in interfaceStyleableProperty<Boolean>
- Returns:
- the style origin
-
-