Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

E4/Eclipse Application Model

< E4
Revision as of 12:16, 8 May 2008 by Boris Bokowski.ca.ibm.com (Talk | contribs) (New page: a.k.a. "the twenty things" This is a first list of "recommended APIs" - things that we expect most Eclipse plug-ins would make use of (if applicable). Note that "the Workbench", "Platfor...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

a.k.a. "the twenty things"

This is a first list of "recommended APIs" - things that we expect most Eclipse plug-ins would make use of (if applicable).

Note that "the Workbench", "PlatformUI" or "Platform" are not on this list. Think of which services you would want to use from within your contributed view or editor.

Selection

ISelectionService - Listening to the current selection

Adapting objects

IAdapterManager - adapt an object (typically, the current selection) to a type that is relevant to the current plug-in

Scheduling Units of Work

IProgressService - Schedule Work in a way that is visible to the user Job - create background jobs

Help

IWorkbenchHelpSystem

Undo/Redo

IWorkbenchOperationSupport

Preferences

IPreferenceStore - access preferences

Handlers

IHandlerService - register a handler for a global command like Copy/Paste

UI Contributions

IMenuService - programmatic contribution to menus and toolbars

Open web pages

IWorkbenchBrowserSupport

Decorations

IDecoratorManager

Be Dynamic-Aware

IExtensionTracker

Back to the top