Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[equinox-dev] heads-up on the upcoming change in the Eclipse registry


Please ignore this message unless one the following applies to your code:
  • your code is using IExtension.getDeclaringPluginDescriptor()  or IExtensionPoint.getDeclaringPluginDescriptor()
  • you adopted org.eclipse.equinox.registry.* interfaces introduced in M4

In M4 we refactored Eclipse registry in a stand-alone module. As a part of the process, new registry interfaces were created in the org.eclipse.equinox.registry package. Due to the complications in insuring backward compatibility, we are now forced to revert the package name (i.e., rename the org.eclipse.equinox.registry package to org.eclipse.core.runtime). However be reassured that all the new APIs and the facility to create your own registries have been kept around.  Further, the registry functionality is still in the new org.eclipse.equinox.registry bundle.

At present we are in the process of finalizing the changes and expect updated code to be available in the next I-build (February 7).

If your code is using IExtension.getDeclaringPluginDescriptor()  or IExtensionPoint.getDeclaringPluginDescriptor():
  • Make sure you use the new I-build for the development. In the current build the error message "The method getDeclaringPluginDescriptor() is undefined" will show up. (In the next I-build PDE has been updated to address this issue)
  • Note that getDeclaringPluginDescriptor() methods are deprecated
  • The change does not affect binary backward compatibility

If you adopted org.eclipse.equinox.registry.* methods introduced in M4:
  • Make sure you use the new I-build for the development
  • Load your code, notice the compilation errors
  • Reorganize your imports (imports will be changed from org.eclipse.equinox.registry.* to org.eclipse.core.runtime.*)
  • Done

Sincerely,
Oleg Besedin

Back to the top