From: Simon Brandhof Date: Wed, 25 Jul 2012 15:35:10 +0000 (+0000) Subject: Add javadoc X-Git-Tag: 2.5-rc1~291 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c252acc5eca3d65903f07002ac02ed24801aa036;p=sonar-scanner-cli.git Add javadoc --- diff --git a/src/main/java/org/sonar/runner/Launcher.java b/src/main/java/org/sonar/runner/Launcher.java index bb353d5..6c7e019 100644 --- a/src/main/java/org/sonar/runner/Launcher.java +++ b/src/main/java/org/sonar/runner/Launcher.java @@ -47,6 +47,14 @@ import java.io.IOException; import java.io.InputStream; import java.util.Properties; +/** + * Contrary to {@link org.sonar.runner.Runner}, this class is executed within the classloader + * provided by the server. It contains the installed plugins and the same version of sonar-batch as the server. + * + * TODO : instead of depending on Runner, that is not in the same classloader, we could simply use Properties : + * sonar.runner.version, sonar.runner.debug, sonar.runner.projectDir, sonar.runner.workDir and all the + * other properties. + */ public class Launcher { private Runner runner;