-
- All Implemented Interfaces:
Observable
,Property<String>
,ReadOnlyProperty<String>
,ObservableObjectValue<String>
,ObservableStringValue
,ObservableValue<String>
,WritableObjectValue<String>
,WritableStringValue
,WritableValue<String>
public class ReadOnlyStringWrapper extends SimpleStringProperty
This class provides a convenient class to define read-only properties. It creates two properties that are synchronized. One property is read-only and can be passed to external users. The other property is read- and writable and should be used internally only.- Since:
- JavaFX 2.0
-
-
Constructor Summary
Constructors Constructor Description ReadOnlyStringWrapper()
The constructor ofReadOnlyStringWrapper
ReadOnlyStringWrapper(Object bean, String name)
The constructor ofReadOnlyStringWrapper
ReadOnlyStringWrapper(Object bean, String name, String initialValue)
The constructor ofReadOnlyStringWrapper
ReadOnlyStringWrapper(String initialValue)
The constructor ofReadOnlyStringWrapper
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReadOnlyStringProperty
getReadOnlyProperty()
Returns the readonly property, that is synchronized with thisReadOnlyStringWrapper
.-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods declared in interface javafx.beans.Observable
addListener, removeListener
-
Methods declared in interface javafx.beans.value.ObservableObjectValue
get
-
Methods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods declared in interface javafx.beans.property.Property
bind, bindBidirectional, isBound, unbind, unbindBidirectional
-
Methods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods declared in class javafx.beans.binding.StringExpression
concat, 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 javafx.beans.property.StringProperty
bindBidirectional, bindBidirectional, unbindBidirectional
-
Methods declared in class javafx.beans.property.StringPropertyBase
fireValueChangedEvent, invalidated, toString
-
Methods declared in interface javafx.beans.value.WritableObjectValue
get, set
-
Methods declared in interface javafx.beans.value.WritableValue
getValue, setValue
-
-
-
-
Constructor Detail
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper()
The constructor ofReadOnlyStringWrapper
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper(String initialValue)
The constructor ofReadOnlyStringWrapper
- Parameters:
initialValue
- the initial value of the wrapped value
-
ReadOnlyStringWrapper
public ReadOnlyStringWrapper(Object bean, String name)
The constructor ofReadOnlyStringWrapper
- Parameters:
bean
- the bean of thisReadOnlyStringProperty
name
- the name of thisReadOnlyStringProperty
-
-
Method Detail
-
getReadOnlyProperty
public ReadOnlyStringProperty getReadOnlyProperty()
Returns the readonly property, that is synchronized with thisReadOnlyStringWrapper
.- Returns:
- the readonly property
-
-