You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2012/09/03 13:36:54 UTC

svn commit: r1380210 - /jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/NativeCommand.java

Author: pmouawad
Date: Mon Sep  3 11:36:53 2012
New Revision: 1380210

URL: http://svn.apache.org/viewvc?rev=1380210&view=rev
Log:
add javadocs
Bugzilla Id: 53168

Modified:
    jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/NativeCommand.java

Modified: jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/NativeCommand.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/NativeCommand.java?rev=1380210&r1=1380209&r2=1380210&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/NativeCommand.java (original)
+++ jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/NativeCommand.java Mon Sep  3 11:36:53 2012
@@ -49,6 +49,14 @@ public class NativeCommand {
 	    this(directory, env, null, null, null);
 	}
 
+	/**
+	 * 
+     * @param env Environment variables appended to environment
+     * @param directory File working directory
+	 * @param stdin File name that will contain data to be input to process
+	 * @param stdout File name that will contain out stream
+	 * @param stderr File name that will contain err stream
+	 */
     public NativeCommand(File directory, Map<String, String> env, String stdin, String stdout, String stderr) {
         super();
         this.directory = directory;