Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java
index b0e8da4a4..fbf0b1829 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java
@@ -59,7 +59,7 @@ import org.osgi.annotation.versioning.ProviderType;
* The {@code BundleContext} object is only valid during the execution of its
* context bundle; that is, during the period from when the context bundle is in
* the {@code STARTING}, {@code STOPPING}, and {@code ACTIVE} bundle states.
- * However, the {@code BundleContext} object become invalid after
+ * However, the {@code BundleContext} object becomes invalid after
* {@link BundleActivator#stop(BundleContext)} returns (if the bundle has a
* Bundle Activator). The {@code BundleContext} object becomes invalid before
* disposing of any remaining registered services and releasing any remaining
@@ -403,6 +403,8 @@ public interface BundleContext extends BundleReference {
* specified classes.</li>
* <li>A property named {@link Constants#SERVICE_SCOPE} identifying the
* scope of the service.</li>
+ * <li>A property named {@link Constants#SERVICE_BUNDLEID} identifying the
+ * the context bundle.</li>
* </ul>
* Properties with these names in the specified {@code Dictionary} will be
* ignored.</li>

Back to the top