diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-30 15:19:54 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-30 15:19:54 +0000 |
commit | def12c0752dae492e4aa9ba8c1fb3b65404b6e33 (patch) | |
tree | 2e00797160e072f1cd21b677e83bb94a56318319 /sonar-plugin-api | |
parent | f3dbea9ac1d53862a698396dfafc10f5c951453d (diff) | |
download | sonarqube-def12c0752dae492e4aa9ba8c1fb3b65404b6e33.tar.gz sonarqube-def12c0752dae492e4aa9ba8c1fb3b65404b6e33.zip |
SONAR-249 add variation values to Ruby API
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java | 36 |
1 files changed, 36 insertions, 0 deletions
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 { + +} |