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

Difference between revisions of "E4/Eclipse Application Services"

< E4
Line 1: Line 1:
 +
=== Fundamentals ===
 +
* Life cycle - initialization and disposal.
 +
* Status handling (errors and warnings).
 +
* Logging over and above status handling.
 +
* Scheduling background work.
 +
* Accessing preferences (mostly read access, but sometimes write access).
 +
* Reporting status (think status line).
 +
* Adapting objects.
 +
 +
=== Specific to UI Parts ===
 
* Receiving input.
 
* Receiving input.
 
* Producing selection.
 
* Producing selection.
 
* Persisting data (receiving persisted state, and producing persistable state).
 
* Persisting data (receiving persisted state, and producing persistable state).
* Accessing preferences (mostly read access, but sometimes write access).
 
 
* Managing shared resources (e.g. JFace LocalResourceManager).
 
* Managing shared resources (e.g. JFace LocalResourceManager).
* Status handling (errors and warnings).
 
 
* Connecting to the help system.
 
* Connecting to the help system.
 
* Participating in Undo/Redo.
 
* Participating in Undo/Redo.
* Adapting objects.
 
* Participating in label and icon decoration.
 
* Reacting to changes to the context (such as plug-ins that come and go).
 
* Scheduling background work.
 
 
* Participating in editor lifecycle (units of saveability, dirtiness, saving, prompting to save).
 
* Participating in editor lifecycle (units of saveability, dirtiness, saving, prompting to save).
* Dynamically contributing to the [[E4/Workbench_Model|workbench model]] (e.g. tool items, menus, sub-parts).
 
 
* Updating enablement, labels, icons of menu and tool items.
 
* Updating enablement, labels, icons of menu and tool items.
 
* Registering command handlers.
 
* Registering command handlers.
* Reacting to changes to the [[E4/Workbench_Model|workbench model]].
+
 
 +
=== Specific to Command Handlers ===
 
* Reporting progress and responding to cancellation requests.
 
* Reporting progress and responding to cancellation requests.
* Reporting status (think status line).
 
* Logging.
 
  
Domain-specific services:
+
=== Advanced ===
 +
* Shell Provider (for properly parenting dialogs).
 +
* Reacting to changes to the [[E4/Workbench_Model|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 [[E4/Workbench_Model|workbench model]] (e.g. tool items, menus, sub-parts).
 +
 
 +
=== Domain-specific ===
 
* IWorkspace.
 
* IWorkspace.
 
* Database connection.
 
* Database connection.
* My EMF model.
+
* Getting hold of the domain model, e.g. in the form of an EMF model.
  
Not sure about:
+
=== Not Sure About These ===
 
* String comparison/collation.
 
* String comparison/collation.
 
* String localization.
 
* String localization.

Revision as of 13:36, 17 October 2008

Fundamentals

  • Life cycle - initialization and disposal.
  • Status handling (errors and warnings).
  • Logging over and above status handling.
  • Scheduling background work.
  • Accessing preferences (mostly read access, but sometimes write access).
  • Reporting status (think status line).
  • Adapting objects.

Specific to UI Parts

  • Receiving input.
  • 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.
  • 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

  • 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).

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.
  • String localization.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.