Class ControllerAppliedEvent
java.lang.Object
com.chillycheesy.modulo.events.Event
com.chillycheesy.modulo.event.controllers.ControllerEvent
com.chillycheesy.modulo.event.controllers.ControllerAppliedEvent
- All Implemented Interfaces:
Cancelable
-
Field Summary
FieldsFields inherited from class com.chillycheesy.modulo.event.controllers.ControllerEvent
controller -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGetter for the cancelable action.booleanCheck if the event was cancel.setCancelableAction(CancelableAction action)Setter for the cancelable action.voidsetCanceled(boolean cancel)Setter for the cancel status.Methods inherited from class com.chillycheesy.modulo.event.controllers.ControllerEvent
getController, setControllerMethods inherited from class com.chillycheesy.modulo.events.Event
getEmitter, setEmitter
-
Field Details
-
cancelableAction
-
canceled
protected boolean canceled
-
-
Constructor Details
-
ControllerAppliedEvent
-
-
Method Details
-
isCanceled
public boolean isCanceled()Description copied from interface:CancelableCheck if the event was cancel.- Specified by:
isCanceledin interfaceCancelable- Returns:
- The cancel status.
-
setCanceled
public void setCanceled(boolean cancel)Description copied from interface:CancelableSetter for the cancel status.- Specified by:
setCanceledin interfaceCancelable- Parameters:
cancel- The new cancel status.
-
setCancelableAction
Description copied from interface:CancelableSetter for the cancelable action.- Specified by:
setCancelableActionin interfaceCancelable- Parameters:
action- The action to execute.
-
getCancelableAction
Description copied from interface:CancelableGetter for the cancelable action.- Specified by:
getCancelableActionin interfaceCancelable- Returns:
- The action to execute.
-