Uses of Interface
org.eclipse.core.runtime.IPluginPrerequisite

Packages that use IPluginPrerequisite
org.eclipse.core.runtime Provides support for the runtime platform, core utility methods and the extension registry. 
 

Uses of IPluginPrerequisite in org.eclipse.core.runtime
 

Methods in org.eclipse.core.runtime that return IPluginPrerequisite
 IPluginPrerequisite[] IPluginDescriptor.getPluginPrerequisites()
          Deprecated. Use
     import org.eclipse.osgi.util.ManifestElement;
     import org.osgi.framework.Constants;
     ...
     String requires = (String)bundle.getHeaders().get(Constants.REQUIRE_BUNDLE);
     ManifestElement[] elements = ManifestElement.parseHeader(Constants.REQUIRE_BUNDLE, requires);
 
where bundle is the bundle associated with the relevant plug-in. The resultant elements array contains one entry for each required plug-in.