]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4947 Drop the Global category for widgets
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Fri, 31 Jan 2014 14:00:24 +0000 (15:00 +0100)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Fri, 31 Jan 2014 14:00:24 +0000 (15:00 +0100)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/BubbleChartWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/WelcomeWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/issues/IssueFilterWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsBubbleChartWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsHistogramWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsPieChartWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterListWidget.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterTreemapWidget.java

index 7b3aba5264ab0fd3de77e05bee691a6459713743..00e5e68ff4dfa81d9e48dbeba58d62098e0e13b8 100644 (file)
 package org.sonar.plugins.core.widgets;
 
 import org.sonar.api.measures.CoreMetrics;
-import org.sonar.api.web.WidgetCategory;
 import org.sonar.api.web.WidgetProperties;
 import org.sonar.api.web.WidgetProperty;
 import org.sonar.api.web.WidgetPropertyType;
 
-@WidgetCategory("Global")
 @WidgetProperties({
   @WidgetProperty(key = "chartTitle", type = WidgetPropertyType.STRING),
   @WidgetProperty(key = "chartHeight", type = WidgetPropertyType.INTEGER, defaultValue = "300"),
index a9d1e7f489ef6d951a17b048dfd52a7d11d1fc16..f70a23b82014488a05e0da46daa1bb66fa277bb0 100644 (file)
  */
 package org.sonar.plugins.core.widgets;
 
-import org.sonar.api.web.WidgetCategory;
 import org.sonar.api.web.WidgetScope;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Global"})
 @WidgetScope(GLOBAL)
 public class WelcomeWidget extends CoreWidget {
 
index fdac731ab667d6ddc74f2d3eade50e10c6f0a2fc..2300d5e44e364d9e551d939e6c448b7a62a20bce 100644 (file)
@@ -24,7 +24,7 @@ import org.sonar.plugins.core.widgets.CoreWidget;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Filters", "Global", "Issues"})
+@WidgetCategory({"Filters", "Issues"})
 @WidgetScope(GLOBAL)
 @WidgetProperties({
   @WidgetProperty(key = IssueFilterWidget.FILTER_PROPERTY, type = WidgetPropertyType.ISSUE_FILTER, optional = false),
index afb43f5ede918b4f99c5a7cc8e243cd9072d8756..dc7836e26d1dff5a7ae7fbeba72bb7a3f1e97ec2 100644 (file)
@@ -26,7 +26,7 @@ import org.sonar.plugins.core.widgets.WidgetConstants;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Filters", "Global"})
+@WidgetCategory({"Filters"})
 @WidgetScope(GLOBAL)
 @WidgetProperties({
   @WidgetProperty(key = "chartTitle", type = WidgetPropertyType.STRING),
index e11437654a2fb546151a9368db76970145af4275..8927ce841ddaa9fdd76c307db942331606c7896f 100644 (file)
@@ -26,7 +26,7 @@ import org.sonar.plugins.core.widgets.WidgetConstants;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Filters", "Global"})
+@WidgetCategory({"Filters"})
 @WidgetScope(GLOBAL)
 @WidgetProperties({
   @WidgetProperty(key = "chartTitle", type = WidgetPropertyType.STRING),
index 4d9d33c354f545328a77e1a127eea076e9be68a2..276b82fa3d70055d3f3cbc328458cfae15d646fd 100644 (file)
@@ -26,7 +26,7 @@ import org.sonar.plugins.core.widgets.WidgetConstants;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Filters", "Global"})
+@WidgetCategory({"Filters"})
 @WidgetScope(GLOBAL)
 @WidgetProperties({
   @WidgetProperty(key = "chartTitle", type = WidgetPropertyType.STRING),
index bf8aa17989a0b24aed6848bffc627e3f82758a07..1ad10fd9bf16ba121dba394de4a4f407c38bd50b 100644 (file)
@@ -24,7 +24,7 @@ import org.sonar.plugins.core.widgets.CoreWidget;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Filters", "Global"})
+@WidgetCategory({"Filters"})
 @WidgetScope(GLOBAL)
 @WidgetProperties({
   @WidgetProperty(key = MeasureFilterListWidget.FILTER_PROPERTY, type = WidgetPropertyType.FILTER, optional = false),
index 8587b9f3a24ef117a3336dca8f0a23091f3c28c8..47fdf3232e440af9601528b9642766daa66e8818 100644 (file)
@@ -24,7 +24,7 @@ import org.sonar.plugins.core.widgets.CoreWidget;
 
 import static org.sonar.api.web.WidgetScope.GLOBAL;
 
-@WidgetCategory({"Filters", "Global"})
+@WidgetCategory({"Filters"})
 @WidgetScope(GLOBAL)
 @WidgetProperties({
   @WidgetProperty(key = MeasureFilterTreemapWidget.FILTER_PROPERTY, type = WidgetPropertyType.FILTER, optional = false),