java.lang.Object
javafx.beans.binding.BooleanExpression
javafx.beans.property.ReadOnlyBooleanProperty
javafx.beans.property.ReadOnlyBooleanPropertyBase
- All Implemented Interfaces:
- Observable,- ReadOnlyProperty<Boolean>,- ObservableBooleanValue,- ObservableValue<Boolean>
- Direct Known Subclasses:
- ReadOnlyJavaBeanBooleanProperty
public abstract class ReadOnlyBooleanPropertyBase extends ReadOnlyBooleanProperty
Base class for all readonly properties wrapping a 
boolean. This class provides a default
 implementation to attach listener.- Since:
- JavaFX 2.0
- See Also:
- ReadOnlyBooleanProperty
- 
Constructor SummaryConstructors Constructor Description ReadOnlyBooleanPropertyBase()Creates a defaultReadOnlyBooleanPropertyBase.
- 
Method SummaryModifier and Type Method Description protected voidfireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners.Methods declared in class javafx.beans.property.ReadOnlyBooleanPropertyasObject, readOnlyBooleanProperty, toStringMethods declared in class javafx.beans.binding.BooleanExpressionand, asString, booleanExpression, booleanExpression, isEqualTo, isNotEqualTo, not, orMethods 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.ObservableBooleanValuegetMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getName
- 
Constructor Details- 
ReadOnlyBooleanPropertyBasepublic ReadOnlyBooleanPropertyBase()Creates a defaultReadOnlyBooleanPropertyBase.
 
- 
- 
Method Details- 
fireValueChangedEventprotected void fireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners. This method needs to be called, if the value of this property changes.
 
-