Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-06-12 20:25:54 +0000
committerThomas Watson2013-06-12 23:22:13 +0000
commitfc9aac6065510083b6e6238038d8aaa7f3c32fd8 (patch)
tree13ae58f84b485565c6e92f3c0eccaefd5af0e77a /bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java
parent58ba892f0f6c4b229ccc4c74c50cf618e2517037 (diff)
downloadrt.equinox.framework-fc9aac6065510083b6e6238038d8aaa7f3c32fd8.tar.gz
rt.equinox.framework-fc9aac6065510083b6e6238038d8aaa7f3c32fd8.tar.xz
rt.equinox.framework-fc9aac6065510083b6e6238038d8aaa7f3c32fd8.zip
Update to latest OSGi R6 core API
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java
index 5f40514f7..e79d11402 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Capability.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) OSGi Alliance (2011, 2012). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2011, 2013). 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.
@@ -17,6 +17,7 @@
package org.osgi.resource;
import java.util.Map;
+import org.osgi.annotation.versioning.ConsumerType;
/**
* A capability that has been declared from a {@link Resource}.
@@ -27,8 +28,9 @@ import java.util.Map;
* always return the same result.
*
* @ThreadSafe
- * @version $Id$
+ * @author $Id$
*/
+@ConsumerType
public interface Capability {
/**

Back to the top