Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-03-05 15:23:12 +0000
committerThomas Watson2014-03-05 15:23:12 +0000
commit82e8bb282bf520275f22cfa6001809cbbe46884e (patch)
treec7bf6db7865defe33b414108c3efb507438c9196 /bundles/org.eclipse.osgi/osgi/src/org/osgi/framework
parent55b40625e1a03acd0f4a8c8321238e91e4482c48 (diff)
downloadrt.equinox.framework-82e8bb282bf520275f22cfa6001809cbbe46884e.tar.gz
rt.equinox.framework-82e8bb282bf520275f22cfa6001809cbbe46884e.tar.xz
rt.equinox.framework-82e8bb282bf520275f22cfa6001809cbbe46884e.zip
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/framework')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/BundleContext.java4
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/launch/Framework.java2
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/dto/BundleRevisionDTO.java2
3 files changed, 6 insertions, 2 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>
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/launch/Framework.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/launch/Framework.java
index 0fa043dd9..25b603f31 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/launch/Framework.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/launch/Framework.java
@@ -72,6 +72,8 @@ public interface Framework extends Bundle {
* {@code ConditionalPermissionAdmin}.</li>
* <li>Be {@link #adapt(Class) adaptable} to the OSGi defined types to which
* a system bundle can be adapted.</li>
+ * <li>Have called the {@code start} method of the extension bundle
+ * activator for all resolved extension bundles.</li>
* </ul>
*
* <p>
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/dto/BundleRevisionDTO.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/dto/BundleRevisionDTO.java
index 7f5e82fcc..43d74167b 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/dto/BundleRevisionDTO.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/dto/BundleRevisionDTO.java
@@ -20,7 +20,7 @@ import org.osgi.framework.wiring.BundleRevision;
import org.osgi.resource.dto.ResourceDTO;
/**
- * Data Transfer Object for a BundleWiring.
+ * Data Transfer Object for a BundleRevision.
*
* <p>
* An installed Bundle can be adapted to provide a {@code BundleRevisionDTO} for

Back to the top