Package ro.sync.exml.plugin.workspace
Interface WorkspaceAccessPluginExtension
-
- All Superinterfaces:
PluginExtension
@API(type=EXTENDABLE, src=PUBLIC) public interface WorkspaceAccessPluginExtension extends PluginExtension
Workspace Access plugin extension.- Since:
- 11.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
applicationClosing()
Notified before the editors are closed and the application exits.void
applicationStarted(StandalonePluginWorkspace pluginWorkspaceAccess)
Main plugin method.
-
-
-
Method Detail
-
applicationStarted
void applicationStarted(StandalonePluginWorkspace pluginWorkspaceAccess)
Main plugin method. Notified when the application is started.
IMPORTANT: This method must not block, the plug-in can add its listeners or customize the main menu and then return.- Parameters:
pluginWorkspaceAccess
- The workspace access
-
applicationClosing
boolean applicationClosing()
Notified before the editors are closed and the application exits. You can reject the close.- Returns:
- True application can close, false, if vetoed.
-
-