org.reactfx.inhibeans.property.ReadOnlyBooleanWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactfx Show documentation
Show all versions of reactfx Show documentation
Reactive event streams for JavaFX
package org.reactfx.inhibeans.property;
import org.reactfx.Guard;
/**
* Inhibitory version of {@link javafx.beans.property.ReadOnlyBooleanWrapper}.
*/
public class ReadOnlyBooleanWrapper
extends javafx.beans.property.ReadOnlyBooleanWrapper
implements Property {
private int blocked = 0;
private boolean fireOnRelease = false;
@Override
public Guard block() {
++blocked;
return ((Guard) this::release).closeableOnce();
}
private void release() {
assert blocked > 0;
if(--blocked == 0 && fireOnRelease) {
fireOnRelease = false;
super.fireValueChangedEvent();
}
}
@Override
protected void fireValueChangedEvent() {
if(blocked > 0) {
fireOnRelease = true;
} else {
super.fireValueChangedEvent();
}
}
/********************************
*** Superclass constructors. ***
********************************/
public ReadOnlyBooleanWrapper() {
super();
}
public ReadOnlyBooleanWrapper(boolean initialValue) {
super(initialValue);
}
public ReadOnlyBooleanWrapper(Object bean, String name) {
super(bean, name);
}
public ReadOnlyBooleanWrapper(Object bean, String name,
boolean initialValue) {
super(bean, name, initialValue);
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy