- java.lang.Object
-
- javafx.beans.binding.BooleanExpression
-
- javafx.beans.property.ReadOnlyBooleanProperty
-
- javafx.beans.property.BooleanProperty
-
- javafx.beans.property.adapter.JavaBeanBooleanProperty
-
- All Implemented Interfaces:
Observable
,JavaBeanProperty<Boolean>
,ReadOnlyJavaBeanProperty<Boolean>
,Property<Boolean>
,ReadOnlyProperty<Boolean>
,ObservableBooleanValue
,ObservableValue<Boolean>
,WritableBooleanValue
,WritableValue<Boolean>
public final class JavaBeanBooleanProperty extends BooleanProperty implements JavaBeanProperty<Boolean>
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
. It cannot be created directly, but aJavaBeanBooleanPropertyBuilder
has to be used.As a minimum, the Java Bean class must implement a getter and a setter for the property. The class, as well as the getter and a setter methods, must be declared public. If the getter of an instance of this class is called, the property of the Java Bean is returned. If the setter is called, the value will be passed to the Java Bean property. If the Java Bean property is bound (i.e. it supports PropertyChangeListeners), this
JavaBeanBooleanProperty
will be aware of changes in the Java Bean. Otherwise it can be notified about changes by callingfireValueChangedEvent()
. If the Java Bean property is also constrained (i.e. it supports VetoableChangeListeners), thisJavaBeanBooleanProperty
will reject changes, if it is bound to anObservableValue<Boolean>
.Deploying an Application as a Module
If the Java Bean class is in a named module, then it must be reflectively accessible to the
javafx.base
module. A class is reflectively accessible if the moduleopens
the containing package to at least thejavafx.base
module.For example, if
com.foo.MyBeanClass
is in thefoo.app
module, themodule-info.java
might look like this:module foo.app { opens com.foo to javafx.base; }
Alternatively, a class is reflectively accessible if the module
exports
the containing package unconditionally.- Since:
- JavaFX 2.1
- See Also:
BooleanProperty
,JavaBeanBooleanPropertyBuilder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addListener(InvalidationListener listener)
Adds anInvalidationListener
which will be notified whenever theObservable
becomes invalid.void
addListener(ChangeListener<? super Boolean> listener)
Adds aChangeListener
which will be notified whenever the value of theObservableValue
changes.void
bind(ObservableValue<? extends Boolean> observable)
Create a unidirection binding for thisProperty
.void
dispose()
Signals to the JavaFX property that it will not be used anymore and any references can be removed.void
fireValueChangedEvent()
This method can be called to notify the adapter of a change of the Java Bean value, if the Java Bean property is not bound (i.e.boolean
get()
Get the wrapped value.Object
getBean()
Returns theObject
that contains this property.String
getName()
Returns the name of this property.boolean
isBound()
Can be used to check, if aProperty
is bound.void
removeListener(InvalidationListener listener)
Removes the given listener from the list of listeners, that are notified whenever the value of theObservable
becomes invalid.void
removeListener(ChangeListener<? super Boolean> listener)
Removes the given listener from the list of listeners that are notified whenever the value of theObservableValue
changes.void
set(boolean value)
Set the wrapped value.String
toString()
Returns a string representation of thisJavaBeanBooleanProperty
object.void
unbind()
Remove the unidirectional binding for thisProperty
.-
Methods inherited from class javafx.beans.property.BooleanProperty
asObject, bindBidirectional, booleanProperty, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.property.ReadOnlyBooleanProperty
readOnlyBooleanProperty
-
Methods inherited from class javafx.beans.binding.BooleanExpression
and, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.value.ObservableValue
getValue
-
Methods inherited from interface javafx.beans.property.Property
bindBidirectional, unbindBidirectional
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue
-
-
-
-
Method Detail
-
get
public boolean get()
Get the wrapped value. UnlikeWritableValue.getValue()
, this method returns primitive boolean. Needs to be identical toWritableValue.getValue()
.- Specified by:
get
in interfaceObservableBooleanValue
- Specified by:
get
in interfaceWritableBooleanValue
- Returns:
- The current value
- Throws:
UndeclaredThrowableException
- if calling the getter of the Java Bean property throws anIllegalAccessException
or anInvocationTargetException
.
-
set
public void set(boolean value)
Set the wrapped value. UnlikeWritableBooleanValue.setValue(java.lang.Boolean)
, this method uses primitive boolean.- Specified by:
set
in interfaceWritableBooleanValue
- Parameters:
value
- The new value- Throws:
UndeclaredThrowableException
- if calling the getter of the Java Bean property throws anIllegalAccessException
or anInvocationTargetException
.
-
bind
public void bind(ObservableValue<? extends Boolean> observable)
Create a unidirection binding for thisProperty
.Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated.
-
unbind
public void unbind()
Remove the unidirectional binding for thisProperty
. If theProperty
is not bound, calling this method has no effect.- Specified by:
unbind
in interfaceProperty<Boolean>
- See Also:
Property.bind(javafx.beans.value.ObservableValue)
-
isBound
public boolean isBound()
Can be used to check, if aProperty
is bound.- Specified by:
isBound
in interfaceProperty<Boolean>
- Returns:
true
if theProperty
is bound,false
otherwise- See Also:
Property.bind(javafx.beans.value.ObservableValue)
-
getBean
public Object getBean()
Returns theObject
that contains this property. If this property is not contained in anObject
,null
is returned.- Specified by:
getBean
in interfaceReadOnlyProperty<Boolean>
- Returns:
- the containing
Object
ornull
-
getName
public String getName()
Returns the name of this property. If the property does not have a name, this method returns an emptyString
.- Specified by:
getName
in interfaceReadOnlyProperty<Boolean>
- Returns:
- the name or an empty
String
-
addListener
public void addListener(ChangeListener<? super Boolean> listener)
Adds aChangeListener
which will be notified whenever the value of theObservableValue
changes. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
ChangeListener
instance may be safely registered for differentObservableValues
.The
ObservableValue
stores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListener
after use or to use an instance ofWeakChangeListener
avoid this situation.- Specified by:
addListener
in interfaceObservableValue<Boolean>
- Parameters:
listener
- The listener to register- See Also:
ObservableValue.removeListener(ChangeListener)
-
removeListener
public void removeListener(ChangeListener<? super Boolean> listener)
Removes the given listener from the list of listeners that are notified whenever the value of theObservableValue
changes.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
- Specified by:
removeListener
in interfaceObservableValue<Boolean>
- Parameters:
listener
- The listener to remove- See Also:
ObservableValue.addListener(ChangeListener)
-
addListener
public void addListener(InvalidationListener listener)
Adds anInvalidationListener
which will be notified whenever theObservable
becomes invalid. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
InvalidationListener
instance may be safely registered for differentObservables
.The
Observable
stores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListener
after use or to use an instance ofWeakInvalidationListener
avoid this situation.- Specified by:
addListener
in interfaceObservable
- Parameters:
listener
- The listener to register- See Also:
Observable.removeListener(InvalidationListener)
-
removeListener
public void removeListener(InvalidationListener listener)
Removes the given listener from the list of listeners, that are notified whenever the value of theObservable
becomes invalid.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
- Specified by:
removeListener
in interfaceObservable
- Parameters:
listener
- The listener to remove- See Also:
Observable.addListener(InvalidationListener)
-
fireValueChangedEvent
public void fireValueChangedEvent()
This method can be called to notify the adapter of a change of the Java Bean value, if the Java Bean property is not bound (i.e. it does not support PropertyChangeListeners).- Specified by:
fireValueChangedEvent
in interfaceReadOnlyJavaBeanProperty<Boolean>
-
dispose
public void dispose()
Signals to the JavaFX property that it will not be used anymore and any references can be removed. A call of this method usually results in the property stopping to observe the Java Bean property by unregistering its listener(s).- Specified by:
dispose
in interfaceReadOnlyJavaBeanProperty<Boolean>
-
toString
public String toString()
Returns a string representation of thisJavaBeanBooleanProperty
object.- Overrides:
toString
in classBooleanProperty
- Returns:
- a string representation of this
JavaBeanBooleanProperty
object.
-
-