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 Services

Fundamentals

  • Life cycle - initialization and disposal.
  • Glass.gif Authorization (single sign on)
  • Progress.gif Status handling (errors and warnings).
  • Logging over and above status handling.
  • Scheduling background work.
  • Accessing preferences (mostly read access, but sometimes write access).
  • Progress.gif Reporting status (think status line).
  • String localization.
  • Adapting objects.

Specific to UI Parts

  • Glass.gif Receiving input.
  • Glass.gif Producing selection.
  • Persisting data (receiving persisted state, and producing persistable state).
  • Managing shared resources (e.g. JFace LocalResourceManager).
  • Connecting to the help system.
  • Participating in Undo/Redo.
  • Progress.gif Participating in editor lifecycle (units of saveability, dirtiness, saving, prompting to save).
  • Updating enablement, labels, icons of menu and tool items.
  • Registering command handlers.

Specific to Command Handlers

  • Glass.gif Reporting progress and responding to cancellation requests.

Advanced

  • Shell Provider (for properly parenting dialogs).
  • Reacting to changes to the workbench model.
  • Participating in label and icon decoration.
  • Reacting to changes to the context (such as plug-ins that come and go).
  • Dynamically contributing to the workbench model (e.g. tool items, menus, sub-parts).
  • Object contributions (actions that can be contributed to objects of a certain type).

Domain-specific

  • IWorkspace.
  • Database connection.
  • Getting hold of the domain model, e.g. in the form of an EMF model.

Not Sure About These

  • String comparison/collation.
  • "Show In" support.
  • Hyperlink detection.

Back to the top