org.reactfx.SuspendableYes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of richtextfx Show documentation
Show all versions of richtextfx Show documentation
FX-Text-Area for formatted text and other special effects.
package org.reactfx;
/**
* Observable boolean value that is normally {@code true}, but is {@code false}
* when suspended.
*/
public class SuspendableYes extends SuspendableBoolean {
@Override
public boolean get() {
return !isSuspended();
}
}