Interface RibbonGalleryContentModel.GalleryCommandActionPreview
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- RibbonGalleryContentModel
public static interface RibbonGalleryContentModel.GalleryCommandActionPreview extends java.util.EventListener
Listener for tracking command preview events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCommandPreviewActivated(BaseCommand command)
Invoked when the preview of a command in this gallery model is activated.void
onCommandPreviewCanceled(BaseCommand command)
Invoked when the command preview has been canceled.
-
-
-
Method Detail
-
onCommandPreviewActivated
void onCommandPreviewActivated(BaseCommand command)
Invoked when the preview of a command in this gallery model is activated.- Parameters:
command
- Command for which the preview has been activated.
-
onCommandPreviewCanceled
void onCommandPreviewCanceled(BaseCommand command)
Invoked when the command preview has been canceled.- Parameters:
command
- Command for which the preview has been canceled.
-
-