summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-07-25 15:35:10 +0000
committerSimon Brandhof <simon.brandhof@gmail.com>2012-07-25 15:35:10 +0000
commitc252acc5eca3d65903f07002ac02ed24801aa036 (patch)
tree42650f9c48e0a78a475e9f856f0b135ddf421fef /src
parentc2f1acc5a32d8f117a7af375d5317a1b5730624b (diff)
downloadsonar-scanner-cli-c252acc5eca3d65903f07002ac02ed24801aa036.tar.gz
sonar-scanner-cli-c252acc5eca3d65903f07002ac02ed24801aa036.zip
Add javadoc
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/sonar/runner/Launcher.java8
1 files changed, 8 insertions, 0 deletions
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;