Package de.gsi.chart.ui.css
Class CssPropertyFactory.StylishStringProperty
- java.lang.Object
-
- javafx.beans.binding.StringExpression
-
- javafx.beans.property.ReadOnlyStringProperty
-
- javafx.beans.property.StringProperty
-
- javafx.beans.property.StringPropertyBase
-
- javafx.css.StyleableStringProperty
-
- javafx.css.SimpleStyleableStringProperty
-
- de.gsi.chart.ui.css.CssPropertyFactory.StylishStringProperty
-
- All Implemented Interfaces:
javafx.beans.Observable,javafx.beans.property.Property<java.lang.String>,javafx.beans.property.ReadOnlyProperty<java.lang.String>,javafx.beans.value.ObservableObjectValue<java.lang.String>,javafx.beans.value.ObservableStringValue,javafx.beans.value.ObservableValue<java.lang.String>,javafx.beans.value.WritableObjectValue<java.lang.String>,javafx.beans.value.WritableStringValue,javafx.beans.value.WritableValue<java.lang.String>,javafx.css.StyleableProperty<java.lang.String>
- Enclosing class:
- CssPropertyFactory<S extends javafx.css.Styleable>
public class CssPropertyFactory.StylishStringProperty extends javafx.css.SimpleStyleableStringProperty
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.function.BinaryOperator<java.lang.String>filterprotected java.lang.RunnablepostInvalidateActionprotected java.lang.RunnablepreInvalidateAction
-
Constructor Summary
Constructors Constructor Description StylishStringProperty(javafx.css.Styleable styleableBean, java.lang.String propertyName, java.lang.String initialValue, boolean inherits, java.util.function.BinaryOperator<java.lang.String> filter, java.lang.Runnable... invalidateActions)The constructor of theStylishStringProperty.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidset(java.lang.String v)-
Methods inherited from class javafx.css.SimpleStyleableStringProperty
getBean, getCssMetaData, getName
-
Methods inherited from class javafx.beans.property.StringPropertyBase
addListener, addListener, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, toString, unbind
-
Methods inherited from class javafx.beans.property.StringProperty
bindBidirectional, bindBidirectional, bindBidirectional, setValue, unbindBidirectional, unbindBidirectional
-
Methods inherited from 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
-
-
-
-
Constructor Detail
-
StylishStringProperty
public StylishStringProperty(javafx.css.Styleable styleableBean, java.lang.String propertyName, java.lang.String initialValue, boolean inherits, java.util.function.BinaryOperator<java.lang.String> filter, java.lang.Runnable... invalidateActions)The constructor of theStylishStringProperty.- Parameters:
styleableBean- the bean of thisObjectPropertypropertyName- the name of thisObjectPropertyinitialValue- the initial value of the wrappedObjectinherits- whether or not the CSS style can be inherited by child nodesfilter- possibility to modify the new value based on old and updated valueinvalidateActions- lambda expressions executed after and before invalidation
-
-