From def12c0752dae492e4aa9ba8c1fb3b65404b6e33 Mon Sep 17 00:00:00 2001 From: simonbrandhof Date: Tue, 30 Nov 2010 15:19:54 +0000 Subject: SONAR-249 add variation values to Ruby API --- .../sonar/api/web/SupportVariationDashboard.java | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java (limited to 'sonar-plugin-api') diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java b/sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java new file mode 100644 index 00000000000..ab477c17b95 --- /dev/null +++ b/sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java @@ -0,0 +1,36 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2009 SonarSource SA + * mailto:contact AT sonarsource DOT com + * + * Sonar is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * Sonar is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ +package org.sonar.api.web; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Annotated widgets support the variation view of dashboards + * + * @since 2.5 + */ +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.TYPE) +public @interface SupportVariationDashboard { + +} -- cgit v1.2.3