Uses of Class
org.scijava.event.SciJavaEvent
-
-
Uses of SciJavaEvent in org.scijava.app.event
Subclasses of SciJavaEvent in org.scijava.app.event Modifier and Type Class Description classStatusEventAn event indicating a status update. -
Uses of SciJavaEvent in org.scijava.console
Subclasses of SciJavaEvent in org.scijava.console Modifier and Type Class Description classOutputEventAn event indicating output occurred onstdoutorstderr. -
Uses of SciJavaEvent in org.scijava.display.event
Subclasses of SciJavaEvent in org.scijava.display.event Modifier and Type Class Description classDisplayActivatedEventAn event indicating a display has become the active one.classDisplayCreatedEventAn event indicating a new display has been created.classDisplayDeletedEventAn event indicating a display has been deleted.classDisplayEventAn event indicating something has happened to aDisplay.classDisplayUpdatedEventAn event indicating a display has updated; e.g., an object has been added or removed. -
Uses of SciJavaEvent in org.scijava.display.event.input
Subclasses of SciJavaEvent in org.scijava.display.event.input Modifier and Type Class Description classInputEventAn event indicating input device (e.g., keyboard or mouse) activity in a display.classKyEventAn event indicating keyboard activity in a display.classKyPressedEventAn event indicating a keyboard key was pressed in a display.classKyReleasedEventAn event indicating a keyboard key was released in a display.classKyTypedEventAn event indicating a keyboard key was typed (i.e., pressed and released) in a display.classMsButtonEventAn event indicating mouse button activity in a display.classMsClickedEventAn event indicating a mouse button was clicked in a display.classMsDraggedEventAn event indicating a mouse was dragged in a display.classMsEnteredEventAn event indicating a mouse cursor entered a display.classMsEventAn event indicating mouse activity in a display.classMsExitedEventAn event indicating a mouse cursor exited a display.classMsMovedEventAn event indicating a mouse was moved in a display.classMsPressedEventAn event indicating a mouse button was pressed in a display.classMsReleasedEventAn event indicating a mouse button was released in a display.classMsWheelEventAn event indicating a mouse wheel was moved in a display. -
Uses of SciJavaEvent in org.scijava.display.event.window
Subclasses of SciJavaEvent in org.scijava.display.event.window Modifier and Type Class Description classWinActivatedEventAn event indicating a display window has been activated.classWinClosedEventAn event indicating a display window has been closed.classWinClosingEventAn event indicating a display window is in the process of closing.classWinDeactivatedEventAn event indicating a display window has been deactivated.classWinDeiconifiedEventAn event indicating a display window was deiconified.classWinEventAn event indicating something has happened to a display window.classWinIconifiedEventAn event indicating a display window was iconified.classWinOpenedEventAn event indicating a display window has been opened. -
Uses of SciJavaEvent in org.scijava.event
Classes in org.scijava.event with type parameters of type SciJavaEvent Modifier and Type Interface Description interfaceEventSubscriber<E extends SciJavaEvent>Interface for subscribers that wish to be notified of SciJava events.Subclasses of SciJavaEvent in org.scijava.event Modifier and Type Class Description classContextCreatedEventEvent to be published immediately after a context has been fully created with all services initialized.classContextDisposingEventEvent to be published just before disposing a context.Methods in org.scijava.event with type parameters of type SciJavaEvent Modifier and Type Method Description <E extends SciJavaEvent>
List<EventSubscriber<E>>DefaultEventService. getSubscribers(Class<E> c)<E extends SciJavaEvent>
List<EventSubscriber<E>>EventService. getSubscribers(Class<E> c)Gets a list of all subscribers to the given event class (and subclasses thereof).<E extends SciJavaEvent>
voidDefaultEventService. publish(E e)<E extends SciJavaEvent>
voidEventService. publish(E e)Publishes the given event immediately, reporting it to all subscribers.<E extends SciJavaEvent>
voidDefaultEventService. publishLater(E e)<E extends SciJavaEvent>
voidEventService. publishLater(E e)Queues the given event for publication, typically on a separate thread (called the "event dispatch thread").Methods in org.scijava.event that return types with arguments of type SciJavaEvent Modifier and Type Method Description Class<? extends SciJavaEvent>EventDetails. getEventType()Methods in org.scijava.event with parameters of type SciJavaEvent Modifier and Type Method Description protected voidDefaultEventHistory. onEvent(SciJavaEvent event)Method parameters in org.scijava.event with type arguments of type SciJavaEvent Modifier and Type Method Description StringDefaultEventHistory. toHTML(Set<Class<? extends SciJavaEvent>> filtered, Set<Class<? extends SciJavaEvent>> highlighted)StringEventHistory. toHTML(Set<Class<? extends SciJavaEvent>> filtered, Set<Class<? extends SciJavaEvent>> highlighted)Gets the recorded event history as an HTML string.Constructors in org.scijava.event with parameters of type SciJavaEvent Constructor Description EventDetails(SciJavaEvent event) -
Uses of SciJavaEvent in org.scijava.io.event
Subclasses of SciJavaEvent in org.scijava.io.event Modifier and Type Class Description classDataOpenedEventAn event indicating that data has been opened from a location.classDataSavedEventAn event indicating that data has been saved to a destination.classIOEventAn event indicating that I/O (e.g., opening or saving) has occurred. -
Uses of SciJavaEvent in org.scijava.menu.event
Subclasses of SciJavaEvent in org.scijava.menu.event Modifier and Type Class Description classMenuEventAn event indicating something has happened to theMenuService'sShadowMenu.classMenusAddedEventAn event indicating one or more menu items have been added to theMenuService'sShadowMenu.classMenusRemovedEventAn event indicating one or more menu items have been removed from theMenuService'sShadowMenu.classMenusUpdatedEventAn event indicating one or more menu items have been adjusted in theMenuService'sShadowMenu. -
Uses of SciJavaEvent in org.scijava.module.event
Subclasses of SciJavaEvent in org.scijava.module.event Modifier and Type Class Description classModuleCanceledEventAn event indicating aModuleexecution has been canceled.classModuleErroredEventAn event indicating a module execution has thrown an exception.classModuleEventAn event indicating something has happened to a module.classModuleExecutedEventAn event indicating a module has just been executed.classModuleExecutingEventAn event indicating a module is about to be executed.classModuleExecutionEventAn event relating to execution of aModule.classModuleFinishedEventAn event indicating a module execution has been completed.classModulePostprocessEventAn event indicating aModulePostprocessorhas been invoked as part of a module execution.classModulePreprocessEventAn event indicating aModulePreprocessorhas been invoked as part of a module execution.classModuleProcessEventAn event indicating aModuleProcessorhas been invoked as part of a module execution.classModulesAddedEventAn event indicating one or more modules have been added to theModuleService.classModulesListEventAn event indicating something has happened to the list of plugins registered with theModuleService.classModulesRemovedEventAn event indicating one or more modules have been removed from theModuleService.classModuleStartedEventAn event indicating a module execution has begun.classModulesUpdatedEventAn event indicating one or more module details have been updated. -
Uses of SciJavaEvent in org.scijava.object.event
Subclasses of SciJavaEvent in org.scijava.object.event Modifier and Type Class Description classListEvent<T>An event indicating something has happened to a list of items.classObjectCreatedEventAn event indicating a new object has been created.classObjectDeletedEventAn event indicating an object has been deleted.classObjectEventAn event indicating something has happened to an object.classObjectModifiedEventAn event indicating an object has been modified somehow.classObjectsAddedEventAn event indicating one or more objects have been added to theObjectService.classObjectsListEventAn event indicating something has happened to the list of objects registered with theObjectService.classObjectsRemovedEventAn event indicating one or more objects have been removed from theObjectService. -
Uses of SciJavaEvent in org.scijava.options.event
Subclasses of SciJavaEvent in org.scijava.options.event Modifier and Type Class Description classOptionsEventFired when anOptionsPluginhas changed an option. -
Uses of SciJavaEvent in org.scijava.platform.event
Subclasses of SciJavaEvent in org.scijava.platform.event Modifier and Type Class Description classAppAboutEventAn event sent when the application is asked to open its about window.classAppFocusEventAn event sent when the application has become the foreground app, or when it has resigned being the foreground app.classApplicationEventAn event indicating an application-level occurrence.classAppMenusCreatedEventAn event sent when the application has created and populated its menus.classAppOpenFilesEventAn event sent when the application is asked to re-open itself.classAppPreferencesEventAn event sent when the application is asked to open its preferences window.classAppPrintEventAn event sent when the app is asked to print a list of files.classAppQuitEventAn event sent when the application is asked to quit.classAppReOpenEventAn event sent when the application is asked to re-open itself.classAppScreenSleepEventAn event sent when the displays attached to the system enter and exit power save sleep.classAppSleepEventAn event sent when a device enters or exits power save sleep.classAppSystemSleepEventAn event sent when the system enters and exits power save sleep.classAppUserSessionEventAn event sent when the the user session has been changed via Fast User Switching.classAppVisibleEventAn event sent when the application has been hidden or shown. -
Uses of SciJavaEvent in org.scijava.plugin.event
Subclasses of SciJavaEvent in org.scijava.plugin.event Modifier and Type Class Description classPluginsAddedEventAn event indicating one or more plugins have been added to thePluginService.classPluginsListEventAn event indicating something has happened to the list of plugins registered with thePluginService.classPluginsRemovedEventAn event indicating one or more plugins have been removed from thePluginService. -
Uses of SciJavaEvent in org.scijava.service.event
Subclasses of SciJavaEvent in org.scijava.service.event Modifier and Type Class Description classServicesLoadedEventAn event which fires when aContextfinishes initializing all its services. -
Uses of SciJavaEvent in org.scijava.task.event
Subclasses of SciJavaEvent in org.scijava.task.event Modifier and Type Class Description classTaskEventAn event indicating aTaskhas been updated. -
Uses of SciJavaEvent in org.scijava.tool.event
Subclasses of SciJavaEvent in org.scijava.tool.event Modifier and Type Class Description classToolActivatedEventAn event indicating a tool has been activated.classToolDeactivatedEventAn event indicating a tool has been deactivated.classToolEventAn event indicating something has happened to a tool. -
Uses of SciJavaEvent in org.scijava.ui.dnd.event
Subclasses of SciJavaEvent in org.scijava.ui.dnd.event Modifier and Type Class Description classDragAndDropEventAn event indicating drag-and-drop activity in a display.classDragEnterEventAn event indicating an object was dragged onto a display.classDragExitEventAn event indicating an object was dragged off of a display.classDragOverEventAn event indicating an object was dragged within a display.classDropEventAn event indicating an object was dropped onto a display. -
Uses of SciJavaEvent in org.scijava.ui.event
Subclasses of SciJavaEvent in org.scijava.ui.event Modifier and Type Class Description classUIEventAn event indicating activity relating to aUserInterface.classUIShownEventAn event indicating a user interface was shown. -
Uses of SciJavaEvent in org.scijava.welcome.event
Subclasses of SciJavaEvent in org.scijava.welcome.event Modifier and Type Class Description classWelcomeEventMarkerSciJavaEventindicating the first time an application is run.
-