Package net.orbyfied.j8.event.impl
Interface Cancellable
public interface Cancellable
An event that can be cancelled.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanGets the cancel status of the event.voidsetCancelled(boolean b) Sets the cancel status of the event.
-
Method Details
-
setCancelled
void setCancelled(boolean b) Sets the cancel status of the event.- Parameters:
b- True/false.
-
isCancelled
boolean isCancelled()Gets the cancel status of the event.- Returns:
- True/false.
-