jpower.event.CancellableEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.event;
/**
* A class for events that are cancellable
*/
public abstract class CancellableEvent implements Cancellable
{
private boolean cancelled;
@Override
public void setCancelled(boolean cancel)
{
cancelled = cancel;
}
@Override
public boolean isCancelled()
{
return cancelled;
}
}