]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-1814 improve javadoc
authorsimonbrandhof <simon.brandhof@gmail.com>
Tue, 28 Sep 2010 15:55:00 +0000 (15:55 +0000)
committersimonbrandhof <simon.brandhof@gmail.com>
Tue, 28 Sep 2010 15:55:00 +0000 (15:55 +0000)
sonar-plugin-api/src/main/java/org/sonar/api/ExtensionProvider.java

index 02ad1ff5c05fc23aade3d9c3dcf81f686e4eb0b0..8e295d94aa688547dcb578010f176bc8932165f5 100644 (file)
@@ -28,8 +28,8 @@ package org.sonar.api;
  * <li>the provider is declared in Plugin.getExtensions()</li>
  * <li>the provider must also implement ServerExtension and/or BatchExtension</li>
  * <li>the provider can accept dependencies (parameters) in its constructors.</li>
- * <li>the method provide() is automatically executed once by sonar</li>
- * <li>the method provide() must return an object or an Iterable of objects. <strong>Arrays are excluded</strong>.</li>
+ * <li>the method provide() is executed once by sonar</li>
+ * <li>the method provide() must return an object, a class or an Iterable of objects. <strong>Arrays are excluded</strong>.</li>
  * </ul>
  * </p>
  *