Class ReadOnlyBooleanWrapper
- All Implemented Interfaces:
Observable, Property<Boolean>, ReadOnlyProperty<Boolean>, ObservableBooleanValue, ObservableValue<Boolean>, WritableBooleanValue, WritableValue<Boolean>
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
ConstructorsConstructorDescriptionThe constructor ofReadOnlyBooleanWrapperReadOnlyBooleanWrapper(boolean initialValue) The constructor ofReadOnlyBooleanWrapperReadOnlyBooleanWrapper(Object bean, String name) The constructor ofReadOnlyBooleanWrapperReadOnlyBooleanWrapper(Object bean, String name, boolean initialValue) The constructor ofReadOnlyBooleanWrapper -
Method Summary
Modifier and TypeMethodDescriptionReturns the readonly property, that is synchronized with thisReadOnlyBooleanWrapper.Methods declared in class SimpleBooleanProperty
getBean, getNameMethods declared in class BooleanPropertyBase
addListener, addListener, bind, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, set, toString, unbindMethods declared in class BooleanProperty
asObject, bindBidirectional, booleanProperty, setValue, unbindBidirectionalMethods declared in class ReadOnlyBooleanProperty
readOnlyBooleanPropertyMethods declared in class BooleanExpression
and, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, orMethods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface Observable
subscribeMethods declared in interface ObservableValue
flatMap, getValue, map, orElse, subscribe, subscribe, whenMethods declared in interface WritableValue
getValue
-
Constructor Details
-
ReadOnlyBooleanWrapper
public ReadOnlyBooleanWrapper()The constructor ofReadOnlyBooleanWrapper -
ReadOnlyBooleanWrapper
public ReadOnlyBooleanWrapper(boolean initialValue) The constructor ofReadOnlyBooleanWrapper- Parameters:
initialValue- the initial value of the wrapped value
-
ReadOnlyBooleanWrapper
-
ReadOnlyBooleanWrapper
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlyBooleanWrapper.- Returns:
- the readonly property
-