Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IProvidedCapability.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IProvidedCapability.java15
1 files changed, 12 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IProvidedCapability.java b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IProvidedCapability.java
index 7848c2dc0..e895d5bc2 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IProvidedCapability.java
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IProvidedCapability.java
@@ -10,6 +10,8 @@
******************************************************************************/
package org.eclipse.equinox.p2.metadata;
+import java.util.Map;
+
/**
* Describes a capability that is exposed by an installable unit. These capabilities
* can satisfy the dependencies of other installable units, causing the unit
@@ -29,26 +31,33 @@ public interface IProvidedCapability {
/**
*
- * @return String
+ * @return String the special "name" attribute of this capability.
* @noreference This method is not intended to be referenced by clients.
*/
public String getName();
/**
*
- * @return String
+ * @return String the namespace of this capability.
* @noreference This method is not intended to be referenced by clients.
*/
public String getNamespace();
/**
*
- * @return String
+ * @return String the special "version" attribute of this capability.
* @noreference This method is not intended to be referenced by clients.
*/
public Version getVersion();
/**
+ *
+ * @return A full description of this capability
+ * @noreference This method is not intended to be referenced by clients.
+ */
+ public Map<String, Object> getAttributes();
+
+ /**
* Returns whether this provided capability is equal to the given object.
*
* This method returns <i>true</i> if:

Back to the top