- All Implemented Interfaces:
Observable
,Property<String>
,ReadOnlyProperty<String>
,ObservableObjectValue<String>
,ObservableStringValue
,ObservableValue<String>
,WritableObjectValue<String>
,WritableStringValue
,WritableValue<String>
,StyleableProperty<String>
- Direct Known Subclasses:
SimpleStyleableStringProperty
public abstract class StyleableStringProperty
extends StringPropertyBase
implements StyleableProperty<String>
This class extends
StringPropertyBase
and provides a partial
implementation of a StyleableProperty
. The method
StyleableProperty.getCssMetaData()
is not implemented.
This class is used to make a StringProperty
,
that would otherwise be implemented as a StringPropertyBase
,
styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
-
Constructor Summary
ConstructorDescriptionThe constructor of theStyleableStringProperty
.StyleableStringProperty
(String initialValue) The constructor of theStyleableStringProperty
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyStyle
(StyleOrigin origin, String 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.StringPropertyBase
addListener, addListener, bind, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, set, toString, unbind
Methods declared in class javafx.beans.property.StringProperty
bindBidirectional, bindBidirectional, bindBidirectional, setValue, unbindBidirectional, unbindBidirectional
Methods declared in class javafx.beans.binding.StringExpression
concat, getValue, getValueSafe, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, isEmpty, isEqualTo, isEqualTo, isEqualToIgnoreCase, isEqualToIgnoreCase, isNotEmpty, isNotEqualTo, isNotEqualTo, isNotEqualToIgnoreCase, isNotEqualToIgnoreCase, isNotNull, isNull, length, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, stringExpression
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface javafx.beans.value.ObservableValue
flatMap, getValue, map, orElse, when
Methods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName
Methods declared in interface javafx.css.StyleableProperty
getCssMetaData
Methods declared in interface javafx.beans.value.WritableValue
getValue, setValue
-
Constructor Details
-
StyleableStringProperty
public StyleableStringProperty()The constructor of theStyleableStringProperty
. -
StyleableStringProperty
The constructor of theStyleableStringProperty
.- Parameters:
initialValue
- the initial value of the wrappedObject
-
-
Method Details
-
applyStyle
This method is called from CSS code to set the value of the property.- Specified by:
applyStyle
in interfaceStyleableProperty<String>
- Parameters:
origin
- the originv
- the value
-
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<String>
- Returns:
- the style origin
-