aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorFabrice Bellingard <fabrice.bellingard@sonarsource.com>2012-11-29 11:28:02 +0100
committerFabrice Bellingard <fabrice.bellingard@sonarsource.com>2012-11-29 13:46:38 +0100
commitc0449e0a612fc44c4a4bff06a35c1f744c898608 (patch)
tree322fce23a111977b4c27933c6f67576e0553998a /sonar-plugin-api
parent9322b252de6c294af1b54377c9df3a7c737771f8 (diff)
downloadsonarqube-c0449e0a612fc44c4a4bff06a35c1f744c898608.tar.gz
sonarqube-c0449e0a612fc44c4a4bff06a35c1f744c898608.zip
SONAR-37 & SONAR-2911 Add comparison tool
- To compare projects to each others (SONAR-37) - To compare X versions of a project (SONAR-2911)
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/resources/ResourceType.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/resources/ResourceType.java b/sonar-plugin-api/src/main/java/org/sonar/api/resources/ResourceType.java
index bab797e764b..bda5124bff6 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/resources/ResourceType.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/resources/ResourceType.java
@@ -45,8 +45,10 @@ import java.util.Map;
* <li>"updatable_key" (since 3.2): if set to "true", then it is possible to update the key of this resource</li>
* <li>"supportsGlobalDashboards" (since 3.2): if true, this resource can be displayed in global dashboards</li>
* <li>"hasRolePolicy" : if true, roles configuration is available in sidebar</li>
+ * <li>"comparable" (since 3.4) : if true, the resource can be compared to other resources</li>
* </ul>
*
+ * @see DefaultResourceTypes in Sonar Core Plugin to see the default resource types
* @since 2.14
*/
@Beta