Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-12-16 14:33:21 +0000
committerThomas Watson2013-12-16 14:33:21 +0000
commitdf5bd60dd3f6514c49c6b8c7a4b75cca996af3fd (patch)
tree62b7ce749f1f9610c20c9c2a5745d7f86df0f44b /bundles/org.eclipse.osgi/osgi
parentd9867a244f5c97b73967fdfe40e3cb855a2e2a61 (diff)
downloadrt.equinox.framework-df5bd60dd3f6514c49c6b8c7a4b75cca996af3fd.tar.gz
rt.equinox.framework-df5bd60dd3f6514c49c6b8c7a4b75cca996af3fd.tar.xz
rt.equinox.framework-df5bd60dd3f6514c49c6b8c7a4b75cca996af3fd.zip
Update OSGi APII20131217-0800
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Constants.java15
1 files changed, 14 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Constants.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Constants.java
index ec3b34087..bebcb5abc 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Constants.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Constants.java
@@ -204,7 +204,7 @@ public interface Constants {
String BUNDLE_CONTACTADDRESS = "Bundle-ContactAddress";
/**
- * Manifest header attribute identifying the bundle's activator class.
+ * Manifest header identifying the bundle's activator class.
*
* <p>
* If present, this header specifies the name of the bundle resource class
@@ -219,6 +219,19 @@ public interface Constants {
String BUNDLE_ACTIVATOR = "Bundle-Activator";
/**
+ * Manifest header identifying the extension bundle's activator class.
+ *
+ * <p>
+ * If present, this header specifies the name of the extension bundle
+ * resource class that implements the {@code BundleActivator} interface and
+ * whose {@code start} and {@code stop} methods are called by the Framework
+ * when the Framework is initialized and shutdown, respectively.
+ *
+ * @since 1.8
+ */
+ String EXTENSION_BUNDLE_ACTIVATOR = "ExtensionBundle-Activator";
+
+ /**
* Manifest header identifying the location from which a new bundle version
* is obtained during a bundle update operation.
*

Back to the top