aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-05-07 16:27:59 +0200
committerDavid Gageot <david@gageot.net>2012-05-07 16:29:40 +0200
commit8550a90562c5cbf517bb68010d4b5d616cb01aa4 (patch)
tree65c44747c9a44cd5468beb8cac3c556af4bd6e79 /sonar-plugin-api
parent81d81bfcaffb1f738a830a7ef007bd1347cd5317 (diff)
downloadsonarqube-8550a90562c5cbf517bb68010d4b5d616cb01aa4.tar.gz
sonarqube-8550a90562c5cbf517bb68010d4b5d616cb01aa4.zip
In the Widget Filter, we should be able to select filter by name
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetPropertyType.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetPropertyType.java b/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetPropertyType.java
index 409120aab66..7be2caf8b2c 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetPropertyType.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetPropertyType.java
@@ -24,5 +24,6 @@ public enum WidgetPropertyType {
BOOLEAN,
FLOAT,
STRING,
- METRIC // @since 2.10
+ METRIC, // @since 2.10
+ FILTER // @since 3.1
}