Package org.fedoraproject.p2
Interface IFedoraBundleRepository
-
- All Known Implementing Classes:
AbstractBundleRepository
,CompoundBundleRepository
,FedoraBundleRepository
public interface IFedoraBundleRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<org.eclipse.equinox.p2.metadata.IInstallableUnit>
getExternalUnits()
Set<org.eclipse.equinox.p2.metadata.IInstallableUnit>
getInternalUnits()
Set<org.eclipse.equinox.p2.metadata.IInstallableUnit>
getPlatformUnits()
-
-
-
Method Detail
-
getPlatformUnits
Set<org.eclipse.equinox.p2.metadata.IInstallableUnit> getPlatformUnits()
- Returns:
- A set of installable units which are part of the Eclipse platform installation.
-
getInternalUnits
Set<org.eclipse.equinox.p2.metadata.IInstallableUnit> getInternalUnits()
- Returns:
- A set of installable units that are discovered by the Eclipse platform at runtime. This refers to the 'dropins' mechanism of bundle discovery. Any platform units that are also present as internal units are ignored.
-
getExternalUnits
Set<org.eclipse.equinox.p2.metadata.IInstallableUnit> getExternalUnits()
- Returns:
- a set of installable units that are OSGi bundles, but not in a location for discovery, or inclusion as part of Eclipse. Any platform or internal units that are also present as external units are ignored.
-
-