org.reactfx.EventStreamBase 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;
import java.util.function.Consumer;
import org.reactfx.util.NotificationAccumulator;
/**
* Base class for event streams.
*
* @param type of events emitted by this event stream.
*/
public abstract class EventStreamBase
extends ObservableBase, T>
implements ProperEventStream {
public EventStreamBase() {
super();
}
EventStreamBase(NotificationAccumulator, T, ?> pn) {
super(pn);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy