]> source.dussan.org Git - sonarqube.git/commitdiff
Declare parameters as non-null by default in org.sonar.api.platform
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 11 Jul 2012 22:20:37 +0000 (00:20 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 11 Jul 2012 22:20:37 +0000 (00:20 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/platform/ServerPluginRepository.java
sonar-plugin-api/src/main/java/org/sonar/api/platform/package-info.java [new file with mode: 0644]

index fd9dd458d0b1714c169514fe95d16942f1114527..2c16f54487e00a2699efa1e4168a18df9ae66126 100644 (file)
@@ -36,8 +36,8 @@ public interface ServerPluginRepository extends PluginRepository, ServerComponen
   void disable(String pluginKey);
 
   /**
-   * @param plugingKey can not be null
+   * @param pluginKey can not be null
    */
-  boolean isDisabled(String plugingKey);
+  boolean isDisabled(String pluginKey);
 
 }
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/platform/package-info.java b/sonar-plugin-api/src/main/java/org/sonar/api/platform/package-info.java
new file mode 100644 (file)
index 0000000..eb0c2fe
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Sonar, open source software quality management tool.
+ * Copyright (C) 2008-2012 SonarSource
+ * 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
+ */
+@ParametersAreNonnullByDefault
+package org.sonar.api.platform;
+
+import javax.annotation.ParametersAreNonnullByDefault;
\ No newline at end of file