aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-08-31 14:15:51 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-09-06 10:13:55 +0200
commitae2a25fd6ecc2980d73003617f1f6450dd3a56bb (patch)
tree7a3ab28231ed53cb45a3cacc72a2d5ac4daa0a82 /sonar-plugin-api
parentb4619b22bb4434524036911adeb5cf5eda0c7ebb (diff)
downloadsonarqube-ae2a25fd6ecc2980d73003617f1f6450dd3a56bb.tar.gz
sonarqube-ae2a25fd6ecc2980d73003617f1f6450dd3a56bb.zip
SONAR-7678 fix javadoc of GlobalPropertyChangeHandler
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java b/sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java
index e607f7de58f..97caa1358fa 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java
@@ -19,18 +19,17 @@
*/
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
*/