public interface IEditorSite extends IWorkbenchPartSite
The workbench exposes its implemention of editor part sites via this interface, which is not intended to be implemented or extended by clients.
Modifier and Type | Method and Description |
---|---|
IEditorActionBarContributor |
getActionBarContributor()
Returns the action bar contributor for this editor.
|
IActionBars |
getActionBars()
Returns the action bars for this part site.
|
void |
registerContextMenu(MenuManager menuManager,
ISelectionProvider selectionProvider,
boolean includeEditorInput)
Registers a pop-up menu with the default id for extension.
|
void |
registerContextMenu(String menuId,
MenuManager menuManager,
ISelectionProvider selectionProvider,
boolean includeEditorInput)
Registers a pop-up menu with a particular id for extension.
|
getId, getKeyBindingService, getPart, getPluginId, getRegisteredName, registerContextMenu, registerContextMenu
getPage, getSelectionProvider, getShell, getWorkbenchWindow, setSelectionProvider
getAdapter
getService, hasService
IEditorActionBarContributor getActionBarContributor()
An action contributor is responsable for the creation of actions. By design, this contributor is used for one or more editors of the same type. Thus, the contributor returned by this method is not owned completely by the editor - it is shared.
null
if none existsIActionBars getActionBars()
IEditorActionBarContributor
.void registerContextMenu(MenuManager menuManager, ISelectionProvider selectionProvider, boolean includeEditorInput)
Registers a pop-up menu with the default id for extension. The default id is defined as the part id.
By default, context menus include object contributions based on the
editor input for the current editor. It is possible to override this
behaviour by calling this method with includeEditorInput
as false
. This might be desirable for editors that
present a localized view of an editor input (e.g., a node in a model
editor).
For a detailed description of context menu registration see
IWorkbenchPartSite.registerContextMenu(MenuManager, ISelectionProvider)
menuManager
- the menu manager; must not be null
.selectionProvider
- the selection provider; must not be null
.includeEditorInput
- Whether the editor input should be included when adding object
contributions to this context menu.IWorkbenchPartSite.registerContextMenu(MenuManager,
ISelectionProvider)
void registerContextMenu(String menuId, MenuManager menuManager, ISelectionProvider selectionProvider, boolean includeEditorInput)
Registers a pop-up menu with a particular id for extension. This method should only be called if the target part has more than one context menu to register.
By default, context menus include object contributions based on the
editor input for the current editor. It is possible to override this
behaviour by calling this method with includeEditorInput
as false
. This might be desirable for editors that
present a localized view of an editor input (e.g., a node in a model
editor).
For a detailed description of context menu registration see
IWorkbenchPartSite.registerContextMenu(MenuManager, ISelectionProvider)
menuId
- the menu id; must not be null
.menuManager
- the menu manager; must not be null
.selectionProvider
- the selection provider; must not be null
.includeEditorInput
- Whether the editor input should be included when adding object
contributions to this context menu.IWorkbenchPartSite.registerContextMenu(MenuManager,
ISelectionProvider)
Copyright (c) 2000, 2018 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.