Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/BundleCapability.java')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/BundleCapability.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/BundleCapability.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/BundleCapability.java
index 834fb5779..b4eb0df09 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/BundleCapability.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/wiring/BundleCapability.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) OSGi Alliance (2010, 2013). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2010, 2015). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,6 +43,7 @@ public interface BundleCapability extends Capability {
*
* @return The namespace of this capability.
*/
+ @Override
String getNamespace();
/**
@@ -57,6 +58,7 @@ public interface BundleCapability extends Capability {
* this capability, or an empty map if this capability has no
* directives.
*/
+ @Override
Map<String, String> getDirectives();
/**
@@ -66,6 +68,7 @@ public interface BundleCapability extends Capability {
* this capability, or an empty map if this capability has no
* attributes.
*/
+ @Override
Map<String, Object> getAttributes();
/**
@@ -77,5 +80,6 @@ public interface BundleCapability extends Capability {
* @return The resource declaring this capability.
* @since 1.1
*/
+ @Override
BundleRevision getResource();
}

Back to the top