Package org.reactfx.inhibeans.property
Class ReadOnlyStringWrapper
- java.lang.Object
-
- javafx.beans.binding.StringExpression
-
- javafx.beans.property.ReadOnlyStringProperty
-
- javafx.beans.property.StringProperty
-
- javafx.beans.property.StringPropertyBase
-
- javafx.beans.property.SimpleStringProperty
-
- javafx.beans.property.ReadOnlyStringWrapper
-
- org.reactfx.inhibeans.property.ReadOnlyStringWrapper
-
- 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>
,Guardian
,Observable
,Property<java.lang.String>
,ObservableValue<java.lang.String>
@Deprecated public class ReadOnlyStringWrapper extends javafx.beans.property.ReadOnlyStringWrapper implements Property<java.lang.String>
Deprecated.Inhibitory version ofReadOnlyStringWrapper
.
-
-
Field Summary
Fields Modifier and Type Field Description private int
blocked
Deprecated.private boolean
fireOnRelease
Deprecated.
-
Constructor Summary
Constructors Constructor Description ReadOnlyStringWrapper()
Deprecated.Superclass constructors.ReadOnlyStringWrapper(java.lang.Object bean, java.lang.String name)
Deprecated.ReadOnlyStringWrapper(java.lang.Object bean, java.lang.String name, java.lang.String initialValue)
Deprecated.ReadOnlyStringWrapper(java.lang.String initialValue)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Guard
block()
Deprecated.Prevents invalidation and change events from being emitted, until the returned guard is released.protected void
fireValueChangedEvent()
Deprecated.private void
release()
Deprecated.-
Methods inherited from class javafx.beans.property.StringPropertyBase
addListener, addListener, bind, get, invalidated, isBound, removeListener, removeListener, set, 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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.reactfx.Guardian
guardWhile, guardWhile
-
Methods inherited from interface org.reactfx.inhibeans.Observable
blockWhile, blockWhile, guard
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
-
-
-
Constructor Detail
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper()
Deprecated.Superclass constructors. ***
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper(java.lang.String initialValue)
Deprecated.
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper(java.lang.Object bean, java.lang.String name)
Deprecated.
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper(java.lang.Object bean, java.lang.String name, java.lang.String initialValue)
Deprecated.
-
-
Method Detail
-
block
public Guard block()
Deprecated.Description copied from interface:Observable
Prevents invalidation and change events from being emitted, until the returned guard is released.- Specified by:
block
in interfaceObservable
- Returns:
- a
Guard
instance that can be released to resume the delivery of invalidation and change events. If this observable has been invalidated one or more times before the guard is released, a single notification is passed to invalidation and change listeners of this observable. The returnedGuard
isAutoCloseable
, which makes it convenient to use in try-with-resources.
-
release
private void release()
Deprecated.
-
fireValueChangedEvent
protected void fireValueChangedEvent()
Deprecated.- Overrides:
fireValueChangedEvent
in classjavafx.beans.property.ReadOnlyStringWrapper
-
-