org.reactfx.SuspendableNo 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 false}, but is {@code true}
* when suspended.
*/
public class SuspendableNo extends SuspendableBoolean {
@Override
public boolean get() {
return isSuspended();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy