java.lang.Object
javafx.beans.binding.ObjectExpression<T>
javafx.beans.property.ReadOnlyObjectProperty<T>
javafx.beans.property.ObjectProperty<T>
javafx.beans.property.ObjectPropertyBase<T>
javafx.css.StyleableObjectProperty<T>
javafx.css.SimpleStyleableObjectProperty<T>
- All Implemented Interfaces:
- Observable,- Property<T>,- ReadOnlyProperty<T>,- ObservableObjectValue<T>,- ObservableValue<T>,- WritableObjectValue<T>,- WritableValue<T>,- StyleableProperty<T>
public class SimpleStyleableObjectProperty<T> extends StyleableObjectProperty<T>
This class extends 
SimpleObjectProperty and provides a full
 implementation of a StyleableProperty.
 This class is used to make a ObjectProperty,
 that would otherwise be implemented as a SimpleObjectProperty,
 styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
- SimpleObjectProperty,- CssMetaData,- StyleableProperty,- StyleableObjectProperty
- 
Constructor SummaryConstructors Constructor Description SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData)The constructor of theSimpleStyleableObjectProperty.SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableObjectProperty.SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData, Object bean, String name, T initialValue)The constructor of theSimpleStyleableObjectProperty.SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData, T initialValue)The constructor of theSimpleStyleableObjectProperty.
- 
Method SummaryMethods declared in class javafx.beans.property.ObjectPropertyBasefireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.binding.ObjectExpressionasString, asString, asString, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull, objectExpressionMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableObjectValuegetMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Propertybind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getNameMethods declared in interface javafx.css.StyleablePropertyapplyStyle, getCssMetaData, getStyleOriginMethods declared in interface javafx.beans.value.WritableObjectValueget, setMethods declared in interface javafx.beans.value.WritableValuegetValue, setValue
- 
Constructor Details- 
SimpleStyleableObjectPropertyThe constructor of theSimpleStyleableObjectProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
 
- 
SimpleStyleableObjectPropertypublic SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData, T initialValue)The constructor of theSimpleStyleableObjectProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- initialValue- the initial value of the wrapped- Object
 
- 
SimpleStyleableObjectPropertypublic SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableObjectProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- bean- the bean of this- ObjectProperty
- name- the name of this- ObjectProperty
 
- 
SimpleStyleableObjectPropertypublic SimpleStyleableObjectProperty(CssMetaData<? extends Styleable,T> cssMetaData, Object bean, String name, T initialValue)The constructor of theSimpleStyleableObjectProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- bean- the bean of this- ObjectProperty
- name- the name of this- ObjectProperty
- initialValue- the initial value of the wrapped- Object
 
 
-