io.github.palexdev.mfxcore.events.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
package io.github.palexdev.mfxcore.events;
import io.github.palexdev.mfxcore.events.bus.IEvent;
import io.github.palexdev.mfxcore.events.bus.Subscriber;
/**
* Basic implementation of {@link IEvent} and starting point to implement real events.
*
* Many frameworks with similar capabilities use events that can carry some data. While this is not strictly necessary
* for an event bus, it is indeed nice to have. The data being carried can provide valuable information to the {@link Subscriber}.
* It's not limited solely to context-explaining data; it can also be used to transmit instances throughout an application,
* for example.
*
* @see IEvent
*/
public abstract class Event implements IEvent {
//================================================================================
// Properties
//================================================================================
private final Object data;
//================================================================================
// Constructors
//================================================================================
protected Event() {
this(null);
}
public Event(Object data) {
this.data = data;
}
//================================================================================
// Overridden Methods
//================================================================================
@Override
public Object data() {
return data;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy