Interface BaseCommand.CommandActionPreview
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- BaseCommand<MCM extends BaseCommandMenuContentModel>
public static interface BaseCommand.CommandActionPreview extends java.util.EventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCommandPreviewActivated(BaseCommand command)
Invoked when a command preview has been activated.void
onCommandPreviewCanceled(BaseCommand command)
Invoked when a command preview has been canceled.
-
-
-
Method Detail
-
onCommandPreviewActivated
void onCommandPreviewActivated(BaseCommand command)
Invoked when a command preview has been activated.- Parameters:
command
- Command for which the preview has been activated.
-
onCommandPreviewCanceled
void onCommandPreviewCanceled(BaseCommand command)
Invoked when a command preview has been canceled.- Parameters:
command
- Command for which the preview has been canceled.
-
-