]> source.dussan.org Git - sonarqube.git/commitdiff
Improve javadoc of org.sonar.api.utils.command.Command
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 10 Jul 2012 16:06:12 +0000 (18:06 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 10 Jul 2012 16:06:12 +0000 (18:06 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/utils/command/Command.java

index 04614bd2bc3afd92e68cfd2963920d96f5d4a399..fd44f5b70e5b40fa1e175c50a115882aac4cf639 100644 (file)
@@ -80,9 +80,7 @@ public final class Command {
   }
 
   /**
-   * Adds or overrides an environment variable. The initial values are a copy of the environment
-   * of the current process.
-   *
+   * @see {@link org.sonar.api.utils.command.Command#getEnvironmentVariables()}
    * @since 3.2
    */
   public Command setEnvironmentVariable(String name, String value) {
@@ -91,6 +89,10 @@ public final class Command {
   }
 
   /**
+   * Environment variables that are propagated during command execution.
+   * The initial value is a copy of the environment of the current process.
+   *
+   * @return a non-null and immutable map of variables
    * @since 3.2
    */
   public Map<String, String> getEnvironmentVariables() {
@@ -115,6 +117,7 @@ public final class Command {
 
   /**
    * Create a command line without any arguments
+   *
    * @param executable
    */
   public static Command create(String executable) {