package fr.xephi.authme.events; import org.bukkit.event.Cancellable; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; /** * * @author Xephi59 */ public class CustomEvent extends Event implements Cancellable { private static final HandlerList handlers = new HandlerList(); private boolean isCancelled; public CustomEvent() { super(false); } public CustomEvent(boolean b) { super(b); } public static HandlerList getHandlerList() { return handlers; } public HandlerList getHandlers() { return handlers; } public boolean isCancelled() { return this.isCancelled; } public void setCancelled(boolean cancelled) { this.isCancelled = cancelled; } }