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 SummaryModifier and TypeMethodDescriptionbooleanNotified before the editors are closed and the application exits.voidapplicationStarted(StandalonePluginWorkspace pluginWorkspaceAccess) Main plugin method.
- 
Method Details- 
applicationStartedMain 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
 
- 
applicationClosingboolean applicationClosing()Notified before the editors are closed and the application exits. You can reject the close.- Returns:
- True application can close, false, if vetoed.
 
 
-