From: Julien HENRY Date: Fri, 27 Apr 2018 13:43:46 +0000 (+0200) Subject: SONAR-10648 Update JavaDoc X-Git-Tag: 7.5~1292 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=77ac9136fa46b471bac80420680e661343fcb495;p=sonarqube.git SONAR-10648 Update JavaDoc --- 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 {