Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-11-18 14:23:37 +0000
committerThomas Watson2013-11-18 14:24:43 +0000
commitee9d9dc88863b249ca0fce767216f09a6a94a2d5 (patch)
treeaaea0626dabb996e450ff1319f7b92dd413de4a5 /bundles
parent02b3b24304b2669850104a8075ed540cc45f550a (diff)
downloadrt.equinox.framework-ee9d9dc88863b249ca0fce767216f09a6a94a2d5.tar.gz
rt.equinox.framework-ee9d9dc88863b249ca0fce767216f09a6a94a2d5.tar.xz
rt.equinox.framework-ee9d9dc88863b249ca0fce767216f09a6a94a2d5.zip
Update OSGi API for R6.I20131119-0800
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.osgi/.settings/.api_filters14
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Constants.java22
2 files changed, 36 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/.settings/.api_filters b/bundles/org.eclipse.osgi/.settings/.api_filters
index 7e3cf234d..01fd78742 100644
--- a/bundles/org.eclipse.osgi/.settings/.api_filters
+++ b/bundles/org.eclipse.osgi/.settings/.api_filters
@@ -177,6 +177,20 @@
<message_arguments>
<message_argument value="1.8"/>
<message_argument value="3.10"/>
+ <message_argument value="BUNDLE_ICON"/>
+ </message_arguments>
+ </filter>
+ <filter comment="Ignore OSGi API" id="1209008130">
+ <message_arguments>
+ <message_argument value="1.8"/>
+ <message_argument value="3.10"/>
+ <message_argument value="BUNDLE_LICENSE"/>
+ </message_arguments>
+ </filter>
+ <filter comment="Ignore OSGi API" id="1209008130">
+ <message_arguments>
+ <message_argument value="1.8"/>
+ <message_argument value="3.10"/>
<message_argument value="SCOPE_BUNDLE"/>
</message_arguments>
</filter>
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 0b1d8f335..ec3b34087 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
@@ -1757,4 +1757,26 @@ public interface Constants {
* @see BundleException#DUPLICATE_BUNDLE_ERROR
*/
String FRAMEWORK_BSNVERSION_MANAGED = "managed";
+
+ /**
+ * Manifest header identifying the bundle's icon URLs.
+ *
+ * <p>
+ * The header value may be retrieved from the {@code Dictionary} object
+ * returned by the {@code Bundle.getHeaders} method.
+ *
+ * @since 1.8
+ */
+ String BUNDLE_ICON = "Bundle-Icon";
+
+ /**
+ * Manifest header identifying the bundle's license information.
+ *
+ * <p>
+ * The header value may be retrieved from the {@code Dictionary} object
+ * returned by the {@code Bundle.getHeaders} method.
+ *
+ * @since 1.8
+ */
+ String BUNDLE_LICENSE = "Bundle-License";
}

Back to the top