From: simonbrandhof Date: Tue, 28 Sep 2010 15:55:00 +0000 (+0000) Subject: SONAR-1814 improve javadoc X-Git-Tag: 2.6~924 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3d17075b61e63d3a6f16009f5700eb19c6e9eec0;p=sonarqube.git SONAR-1814 improve javadoc --- diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/ExtensionProvider.java b/sonar-plugin-api/src/main/java/org/sonar/api/ExtensionProvider.java index 02ad1ff5c05..8e295d94aa6 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/ExtensionProvider.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/ExtensionProvider.java @@ -28,8 +28,8 @@ package org.sonar.api; *
  • the provider is declared in Plugin.getExtensions()
  • *
  • the provider must also implement ServerExtension and/or BatchExtension
  • *
  • the provider can accept dependencies (parameters) in its constructors.
  • - *
  • the method provide() is automatically executed once by sonar
  • - *
  • the method provide() must return an object or an Iterable of objects. Arrays are excluded.
  • + *
  • the method provide() is executed once by sonar
  • + *
  • the method provide() must return an object, a class or an Iterable of objects. Arrays are excluded.
  • * *

    *