From c252acc5eca3d65903f07002ac02ed24801aa036 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 25 Jul 2012 15:35:10 +0000 Subject: [PATCH] Add javadoc --- src/main/java/org/sonar/runner/Launcher.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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; -- 2.39.5