- 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 extends 
BooleanPropertyBase and provides a partial
 implementation of a StyleableProperty. The method
 StyleableProperty.getCssMetaData() is not implemented.
 This class is used to make a BooleanProperty,
 that would otherwise be implemented as a BooleanPropertyBase,
 styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionThe constructor of theStyleableBooleanProperty.StyleableBooleanProperty(boolean initialValue) The constructor of theStyleableBooleanProperty.
- 
Method SummaryModifier and TypeMethodDescriptionvoidapplyStyle(StyleOrigin origin, Boolean v) This method is called from CSS code to set the value of the property.Tells the origin of the value of the property.Methods declared in class javafx.beans.property.BooleanPropertyBaseaddListener, addListener, bind, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, set, toString, unbindMethods declared in class javafx.beans.property.BooleanPropertyasObject, bindBidirectional, booleanProperty, setValue, unbindBidirectionalMethods declared in class javafx.beans.property.ReadOnlyBooleanPropertyreadOnlyBooleanPropertyMethods declared in class javafx.beans.binding.BooleanExpressionand, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, orMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.value.ObservableValueflatMap, getValue, map, orElseMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getNameMethods declared in interface javafx.css.StyleablePropertygetCssMetaDataMethods declared in interface javafx.beans.value.WritableValuegetValue
- 
Constructor Details- 
StyleableBooleanPropertypublic StyleableBooleanProperty()The constructor of theStyleableBooleanProperty.
- 
StyleableBooleanPropertypublic StyleableBooleanProperty(boolean initialValue) The constructor of theStyleableBooleanProperty.- Parameters:
- initialValue- the initial value of the wrapped- Object
 
 
- 
- 
Method Details- 
applyStyleThis method is called from CSS code to set the value of the property.- Specified by:
- applyStylein interface- StyleableProperty<Boolean>
- Parameters:
- origin- the origin
- v- the value
 
- 
getStyleOriginTells the origin of the value of the property. This is needed to determine whether or not CSS can override the value.- Specified by:
- getStyleOriginin interface- StyleableProperty<Boolean>
- Returns:
- the style origin
 
 
-