]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7678 fix javadoc of GlobalPropertyChangeHandler
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 31 Aug 2016 12:15:51 +0000 (14:15 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 6 Sep 2016 08:13:55 +0000 (10:13 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java

index e607f7de58f94e5de2657d1d359935707ec21b15..97caa1358fa3e0c9f814c10526f7d3b45203325e 100644 (file)
  */
 package org.sonar.api.config;
 
+import javax.annotation.Nullable;
 import org.sonar.api.ExtensionPoint;
 import org.sonar.api.server.ServerSide;
 
-import javax.annotation.Nullable;
-
 /**
- * Observe changes of global properties done from web application. It does not support :
+ * Observe changes of global properties done from web application. It does not support:
  * <ul>
  * <li>changes done by end-users from the page "Project Settings"</li>
- * <li>changes done programmatically on the component org.sonar.api.config.Settings</li>
- * <li>changes done when restoring settings from XML using backup/restore feature</li>
- * </ul>
+ * <li>changes done in file conf/sonar.properties</li>
+ * <li>change of default values</li>
 * </ul>
  *
  * @since 3.0
  */