diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2018-04-27 15:43:46 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-04-27 20:20:45 +0200 |
commit | 77ac9136fa46b471bac80420680e661343fcb495 (patch) | |
tree | 959447d1ed3de7830fbcdfddb96a1e15fa7494e6 | |
parent | 5ebd9b983ab34e98b44a81d056fe4fe8c47cc2b3 (diff) | |
download | sonarqube-77ac9136fa46b471bac80420680e661343fcb495.tar.gz sonarqube-77ac9136fa46b471bac80420680e661343fcb495.zip |
SONAR-10648 Update JavaDoc
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/batch/fs/internal/SensorStrategy.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/batch/fs/internal/SensorStrategy.java b/sonar-plugin-api/src/main/java/org/sonar/api/batch/fs/internal/SensorStrategy.java index dc74f0e9d23..c9314c2fd70 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/batch/fs/internal/SensorStrategy.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/batch/fs/internal/SensorStrategy.java @@ -19,10 +19,13 @@ */ package org.sonar.api.batch.fs.internal; +import org.sonar.api.batch.fs.InputFile; + /** - * A shared, mutable object in the module container. + * A shared, mutable object in the project container. * It's used during the execution of sensors to decide whether * sensors should be executed once for the entire project, or per-module. + * It is also injected into each InputFile to change the behavior of {@link InputFile#relativePath()} */ public class SensorStrategy { |