- 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 SummaryConstructors Constructor Description ReadOnlyStringWrapper()The constructor ofReadOnlyStringWrapperReadOnlyStringWrapper(Object bean, String name)The constructor ofReadOnlyStringWrapperReadOnlyStringWrapper(Object bean, String name, String initialValue)The constructor ofReadOnlyStringWrapperReadOnlyStringWrapper(String initialValue)The constructor ofReadOnlyStringWrapper
- 
Method SummaryModifier and Type Method Description ReadOnlyStringPropertygetReadOnlyProperty()Returns the readonly property, that is synchronized with thisReadOnlyStringWrapper.Methods declared in class javafx.beans.property.StringPropertyBasefireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.property.StringPropertybindBidirectional, bindBidirectional, unbindBidirectionalMethods declared in class javafx.beans.binding.StringExpressionconcat, getValueSafe, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, isEmpty, isEqualTo, isEqualTo, isEqualToIgnoreCase, isEqualToIgnoreCase, isNotEmpty, isNotEqualTo, isNotEqualTo, isNotEqualToIgnoreCase, isNotEqualToIgnoreCase, isNotNull, isNull, length, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, stringExpressionMethods 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.beans.value.WritableObjectValueget, setMethods declared in interface javafx.beans.value.WritableValuegetValue, setValue
- 
Constructor Details- 
ReadOnlyStringWrapperpublic ReadOnlyStringWrapper()The constructor ofReadOnlyStringWrapper
- 
ReadOnlyStringWrapperThe constructor ofReadOnlyStringWrapper- Parameters:
- initialValue- the initial value of the wrapped value
 
- 
ReadOnlyStringWrapperThe constructor ofReadOnlyStringWrapper- Parameters:
- bean- the bean of this- ReadOnlyStringProperty
- name- the name of this- ReadOnlyStringProperty
 
- 
ReadOnlyStringWrapperThe constructor ofReadOnlyStringWrapper- Parameters:
- bean- the bean of this- ReadOnlyStringProperty
- name- the name of this- ReadOnlyStringProperty
- initialValue- the initial value of the wrapped value
 
 
- 
- 
Method Details- 
getReadOnlyPropertyReturns the readonly property, that is synchronized with thisReadOnlyStringWrapper.- Returns:
- the readonly property
 
 
-