Package org.eclipse.remote.core
Interface IProcessFactory
-
public interface IProcessFactoryAbstraction of the java.lang.Runtime exec() methods to allow different implementations to be supplied.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Processexec(String cmd)Processexec(String[] cmdarray)Processexec(String[] cmdarray, String[] envp)Processexec(String[] cmdarray, String[] envp, File dir)Processexec(String cmd, String[] envp)Processexec(String cmd, String[] envp, File dir)
-
-
-
Method Detail
-
exec
Process exec(String cmd) throws IOException
- Throws:
IOException
-
exec
Process exec(String[] cmdarray) throws IOException
- Throws:
IOException
-
exec
Process exec(String[] cmdarray, String[] envp) throws IOException
- Throws:
IOException
-
exec
Process exec(String cmd, String[] envp) throws IOException
- Throws:
IOException
-
exec
Process exec(String cmd, String[] envp, File dir) throws IOException
- Throws:
IOException
-
exec
Process exec(String[] cmdarray, String[] envp, File dir) throws IOException
- Throws:
IOException
-
-