All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.frontear.efkolia.impl.events.Event Maven / Gradle / Ivy

There is a newer version: 0.2.8
Show newest version
package com.github.frontear.efkolia.impl.events;

import lombok.Getter;

public abstract class Event {
    @Getter private boolean cancelled;

    public final void cancel() {
        this.cancelled = true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy