Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Eclipse4/RCP/Compatibility Layer/Overview

< Eclipse4‎ | RCP
Revision as of 13:59, 7 April 2011 by Unnamed Poltroon (Talk) (New page: The '''Compatibility Layer''' is a set of bundles that have been forked from the Eclipse 3.x stream to allow plug-ins written against the 3.x APIs to run unchanged on an Eclipse 4.x SDK. ...)

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

The Compatibility Layer is a set of bundles that have been forked from the Eclipse 3.x stream to allow plug-ins written against the 3.x APIs to run unchanged on an Eclipse 4.x SDK.

Contents

The following bundles have been forked from the 3.x stream:

  • org.eclipse.ui.workbench
  • org.eclipse.platform
  • org.eclipse.sdk

The only interesting bundle here is the org.eclipse.ui.workbench bundle as the org.eclipse.platform and org.eclipse.sdk bundles do not actually export any API.

The internal implementations of interfaces like IWorkbenchWindow and IWorkbenchPage from the org.eclipse.ui.workbench bundle have been replaced by new implementations that calls out to Eclipse 4 services and APIs.

Back to the top