| Display<?> | createDisplay(Object o)
Creates a display for the given object, publishing a
DisplayCreatedEvent to notify interested parties.
|
| Display<?> | createDisplay(String name,
Object o)
Creates a display for the given object, publishing a
DisplayCreatedEvent to notify interested parties.
|
| Display<?> | createDisplayQuietly(Object o)
Creates a display for the given object, without publishing a
DisplayCreatedEvent.
|
| default EventService | eventService() |
| Display<?> | getActiveDisplay()
Gets the currently active display (of any Display type).
|
| <D extends Display<?>> D |
getActiveDisplay(Class<D> displayClass)
Gets the most recently active display (of the specified Display type).
|
| Display<?> | getDisplay(String name)
Gets a display by its name.
|
| <D extends Display<?>> PluginInfo<Display<?>> |
getDisplayPlugin(Class<D> pluginClass)
Gets the display plugin of the given class, or null if none.
|
| PluginInfo<Display<?>> | getDisplayPlugin(String className)
Gets the display plugin of the given class name, or null if none.
|
| List<PluginInfo<Display<?>>> | getDisplayPlugins()
Gets the list of known display plugins.
|
| <DT extends Display<?>> List<PluginInfo<DT>> |
getDisplayPluginsOfType(Class<DT> type)
Gets the list of display plugins of the given type (e.g.,
ImageDisplay.class).
|
| List<Display<?>> | getDisplays()
Gets a list of all available displays.
|
| List<Display<?>> | getDisplays(Object o)
Gets a list of displays currently visualizing the given object.
|
| <DT extends Display<?>> List<DT> |
getDisplaysOfType(Class<DT> type)
Gets a list of all available displays of the given type (e.g.,
ImageDisplay.class).
|
| default EventService | getEventService()
Deprecated.
Use eventService() instead.
|
| default ObjectService | getObjectService()
Deprecated.
Use objectService() instead.
|
| default PluginService | getPluginService()
Deprecated.
Use pluginService() instead.
|
| boolean | isUniqueName(String name)
Checks whether the given name is already taken by an existing display.
|
| default ObjectService | objectService() |
| default PluginService | pluginService() |
| void | setActiveDisplay(Display<?> display)
Set the active display.
|
To create a Display without publishing an event, see createDisplayQuietly(java.lang.Object).
To create a Display without publishing an event, see createDisplayQuietly(java.lang.Object).
Copyright © 2015–2022 SciJava. All rights reserved.