Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

Runtime components

The Eclipse runtime itself is factored into several components:

If your plug-in has a dependency on the org.eclipse.core.runtime, then it will continue to run unchanged. However, if you would like to minimize the number of dependencies, then you are able to pick only the runtime bundles that you use.

If you would like to use Import-Package directive (rather than Require-Bundle) then you should be aware that the org.eclipse.core.runtime package is split across several bundles.

To import only the content of this package provided by the org.eclipse.equinox.common bundle, use this line in the manifest file:

	Import-Package: org.eclipse.core.runtime; common="split" 

To import the content of the package from the org.eclipse.equinox.registry and org.eclipse.equinox.common bundles, use:

	Import-Package: org.eclipse.core.runtime; registry="split"

And to import the complete package, use:

	Import-Package: org.eclipse.core.runtime

 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire