summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/ProcessHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/ProcessHandler.java')
-rw-r--r--qadevOOo/runner/helper/ProcessHandler.java50
1 files changed, 25 insertions, 25 deletions
diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java
index c414accd44ac..ee7b0f079e7e 100644
--- a/qadevOOo/runner/helper/ProcessHandler.java
+++ b/qadevOOo/runner/helper/ProcessHandler.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -138,7 +138,7 @@ public class ProcessHandler
* Creates instance with specified external command.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLine
+ * @param cmdLine
*/
public ProcessHandler(String cmdLine)
{
@@ -146,11 +146,11 @@ public class ProcessHandler
}
/**
- * Creates instance with specified external command
+ * Creates instance with specified external command
* including parameters as an array.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLines
+ * @param cmdLines
*/
public ProcessHandler(String[] cmdLines)
{
@@ -159,13 +159,13 @@ public class ProcessHandler
}
/**
- * Creates instance with specified external command
+ * Creates instance with specified external command
* including parameters as an array, with environment
* variables.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLines
- * @param envVars
+ * @param cmdLines
+ * @param envVars
* @see java.lang.Runtime exec(String[], String[])
*/
public ProcessHandler(String[] cmdLines, String[] envVars)
@@ -175,13 +175,13 @@ public class ProcessHandler
}
/**
- * Creates instance with specified external command
+ * Creates instance with specified external command
* including parameters as an array, with environment
* variables. The command will be started in workDir.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLines
- * @param workDir
+ * @param cmdLines
+ * @param workDir
*/
public ProcessHandler(String[] cmdLines, File workDir)
{
@@ -194,9 +194,9 @@ public class ProcessHandler
* Creates instance with specified external command and
* log stream where debug info and output
* of external command is printed out. The command will be started in workDir.
- * @param cmdLines
- * @param log
- * @param workDir
+ * @param cmdLines
+ * @param log
+ * @param workDir
*/
public ProcessHandler(String[] cmdLines, PrintWriter log, File workDir)
{
@@ -206,10 +206,10 @@ public class ProcessHandler
/**
* Creates instance with specified external command and
- * log stream where debug info and output
+ * log stream where debug info and output
* of external command is printed out.
* @param cmdLine
- * @param log
+ * @param log
*/
public ProcessHandler(String cmdLine, PrintWriter log)
{
@@ -219,7 +219,7 @@ public class ProcessHandler
/**
* Creates instance with specified external command and set the time out for the command.
* @param cmdLine
- * @param timeOut
+ * @param timeOut
*/
public ProcessHandler(String cmdLine, int timeOut)
{
@@ -232,7 +232,7 @@ public class ProcessHandler
* Debug info and output
* of external commandis printed to stdout.
* @param cmdLine
- * @param workDir
+ * @param workDir
*/
public ProcessHandler(String cmdLine, File workDir)
{
@@ -245,7 +245,7 @@ public class ProcessHandler
* Debug info and output printed in log stream.
* @param cmdLine
* @param log
- * @param workDir
+ * @param workDir
*/
public ProcessHandler(String cmdLine, PrintWriter log, File workDir)
{
@@ -259,10 +259,10 @@ public class ProcessHandler
* of external command is printed .
* The specified environment variables are set for the new process.
* If log stream is null, logging is printed to stdout.
- * @param cmdLine
- * @param log
- * @param workDir
- * @param envVars
+ * @param cmdLine
+ * @param log
+ * @param workDir
+ * @param envVars
*/
public ProcessHandler(String cmdLine, PrintWriter log, File workDir, String[] envVars)
{
@@ -348,7 +348,7 @@ public class ProcessHandler
}
/**
- * This method do an asynchronous execution of the commands. To avoid a interruption on long running processes
+ * This method do an asynchronous execution of the commands. To avoid a interruption on long running processes
* caused by <CODE>OfficeWatcher</CODE>, the OfficeWatcher get frequently a ping.
* @see helper.OfficeWatcher
*/
@@ -747,7 +747,7 @@ public class ProcessHandler
* The method can also be called before the command
* starts its execution. Then the text is buffered
* and transfered to command when it will be started.
- * @param str
+ * @param str
*/
public void printInputText(String str)
{
@@ -800,7 +800,7 @@ public class ProcessHandler
}
/** Causes the thread to sleep some time.
- * @param milliseconds
+ * @param milliseconds
*/
public static void shortWait(long milliseconds)
{