Top Description Fields Constructors Methods
javafx.beans.property.adapter

public final Class ReadOnlyJavaBeanBooleanProperty

extends ReadOnlyBooleanPropertyBase
implements ReadOnlyJavaBeanProperty<Boolean>
Class Inheritance
All Implemented Interfaces
javafx.beans.property.adapter.ReadOnlyJavaBeanProperty, javafx.beans.property.ReadOnlyProperty, javafx.beans.value.ObservableValue, javafx.beans.Observable
Imports
com.sun.javafx.property.MethodHelper, com.sun.javafx.property.adapter.Disposer, .ReadOnlyPropertyDescriptor, javafx.beans.property.ReadOnlyBooleanPropertyBase, java.lang.reflect.InvocationTargetException, .UndeclaredThrowableException

A ReadOnlyJavaBeanBooleanProperty provides an adapter between a regular read only Java Bean property of type boolean or Boolean and a JavaFX ReadOnlyBooleanProperty. It cannot be created directly, but a ReadOnlyJavaBeanBooleanPropertyBuilder has to be used.

As a minimum, the Java Bean class must implement a getter for the property. The class, as well as the getter method, 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 Java Bean property is bound (i.e. it supports PropertyChangeListeners), this ReadOnlyJavaBeanBooleanProperty will be aware of changes in the Java Bean. Otherwise it can be notified about changes by calling fireValueChangedEvent().

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 module opens the containing package to at least the javafx.base module.

For example, if com.foo.MyBeanClass is in the foo.app module, the module-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
javafx.beans.property.ReadOnlyBooleanProperty, ReadOnlyJavaBeanBooleanPropertyBuilder

Field Summary

Modifier and TypeField and Description
private final ReadOnlyPropertyDescriptor<Boolean>
private final ReadOnlyPropertyDescriptor<Boolean>.ReadOnlyListener

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public void
dispose()

Implements javafx.beans.property.adapter.ReadOnlyJavaBeanProperty.dispose.

Signals to the JavaFX property that it will not be used anymore and any references can be removed.

public void
fireValueChangedEvent()

Overrides javafx.beans.property.ReadOnlyBooleanPropertyBase.fireValueChangedEvent.

Implements javafx.beans.property.adapter.ReadOnlyJavaBeanProperty.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).

public boolean
get()

Implements javafx.beans.value.ObservableBooleanValue.get.

Returns the current value of this ObservableBooleanValue.

public Object
getBean()

Implements javafx.beans.property.ReadOnlyProperty.getBean.

Returns the Object that contains this property.

public String
getName()

Implements javafx.beans.property.ReadOnlyProperty.getName.

Returns the name of this property.

Inherited from javafx.beans.property.ReadOnlyBooleanPropertyBase:
addListeneraddListenerremoveListenerremoveListener

Field Detail

descriptorback to summary
private final ReadOnlyPropertyDescriptor<Boolean> descriptor
listenerback to summary
private final ReadOnlyPropertyDescriptor<Boolean>.ReadOnlyListener listener

Constructor Detail

ReadOnlyJavaBeanBooleanPropertyback to summary
pack-priv ReadOnlyJavaBeanBooleanProperty(ReadOnlyPropertyDescriptor<Boolean> descriptor, Object bean)

Method Detail

disposeback to summary
public void dispose()

Implements javafx.beans.property.adapter.ReadOnlyJavaBeanProperty.dispose.

Doc from javafx.beans.property.adapter.ReadOnlyJavaBeanProperty.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).

Annotations
@Override
fireValueChangedEventback to summary
public void fireValueChangedEvent()

Overrides javafx.beans.property.ReadOnlyBooleanPropertyBase.fireValueChangedEvent.

Implements javafx.beans.property.adapter.ReadOnlyJavaBeanProperty.fireValueChangedEvent.

Doc from javafx.beans.property.adapter.ReadOnlyJavaBeanProperty.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).

Annotations
@Override
getback to summary
public boolean get()

Implements javafx.beans.value.ObservableBooleanValue.get.

Doc from javafx.beans.value.ObservableBooleanValue.get.

Returns the current value of this ObservableBooleanValue.

Returns:boolean

The current value

Annotations
@Override
Exceptions
UndeclaredThrowableException:
if calling the getter of the Java Bean property throws an IllegalAccessException or an InvocationTargetException.
getBeanback to summary
public Object getBean()

Implements javafx.beans.property.ReadOnlyProperty.getBean.

Doc from javafx.beans.property.ReadOnlyProperty.getBean.

Returns the Object that contains this property. If this property is not contained in an Object, null is returned.

Returns:Object

the containing Object or null

Annotations
@Override
getNameback to summary
public String getName()

Implements javafx.beans.property.ReadOnlyProperty.getName.

Doc from javafx.beans.property.ReadOnlyProperty.getName.

Returns the name of this property. If the property does not have a name, this method returns an empty String.

Returns:String

the name or an empty String

Annotations
@Override