Uses of Class
org.apache.commons.exec.CommandLine

Packages that use CommandLine
org.apache.commons.exec   
org.apache.commons.exec.environment   
org.apache.commons.exec.launcher   
 

Uses of CommandLine in org.apache.commons.exec
 

Methods in org.apache.commons.exec that return CommandLine
 CommandLine CommandLine.addArgument(java.lang.String argument)
          Add a single argument.
 CommandLine CommandLine.addArgument(java.lang.String argument, boolean handleQuoting)
          Add a single argument.
 CommandLine CommandLine.addArguments(java.lang.String arguments)
          Add multiple arguments.
 CommandLine CommandLine.addArguments(java.lang.String[] arguments)
          Add multiple arguments.
 CommandLine CommandLine.addArguments(java.lang.String[] arguments, boolean handleQuoting)
          Add multiple arguments.
 CommandLine CommandLine.addArguments(java.lang.String arguments, boolean handleQuoting)
          Add multiple arguments.
static CommandLine CommandLine.parse(java.lang.String line)
          Create a command line from a string.
static CommandLine CommandLine.parse(java.lang.String line, java.util.Map substitutionMap)
          Create a command line from a string.
 

Methods in org.apache.commons.exec with parameters of type CommandLine
 int DefaultExecutor.execute(CommandLine command)
           
 int Executor.execute(CommandLine command)
          Methods for starting synchronous execution.
 void DefaultExecutor.execute(CommandLine command, ExecuteResultHandler handler)
           
 void Executor.execute(CommandLine command, ExecuteResultHandler handler)
          Methods for starting asynchronous execution.
 int DefaultExecutor.execute(CommandLine command, java.util.Map environment)
           
 int Executor.execute(CommandLine command, java.util.Map environment)
          Methods for starting synchronous execution.
 void DefaultExecutor.execute(CommandLine command, java.util.Map environment, ExecuteResultHandler handler)
           
 void Executor.execute(CommandLine command, java.util.Map environment, ExecuteResultHandler handler)
          Methods for starting asynchronous execution.
protected  java.lang.Process DefaultExecutor.launch(CommandLine command, java.util.Map env, java.io.File dir)
          Creates a process that runs a command.
 

Uses of CommandLine in org.apache.commons.exec.environment
 

Methods in org.apache.commons.exec.environment that return CommandLine
protected  CommandLine OpenVmsProcessingEnvironment.getProcEnvCommand()
          Determine the OS specific command line to get a list of environment variables.
protected  CommandLine DefaultProcessingEnvironment.getProcEnvCommand()
          Determine the OS specific command line to get a list of environment variables.
 

Uses of CommandLine in org.apache.commons.exec.launcher
 

Methods in org.apache.commons.exec.launcher with parameters of type CommandLine
 java.lang.Process CommandLauncher.exec(CommandLine cmd, java.util.Map env)
          Launches the given command in a new process.
 java.lang.Process CommandLauncherImpl.exec(CommandLine cmd, java.util.Map env)
           
 java.lang.Process VmsCommandLauncher.exec(CommandLine cmd, java.util.Map env)
          Launches the given command in a new process.
 java.lang.Process CommandLauncherProxy.exec(CommandLine cmd, java.util.Map env)
          Launches the given command in a new process.
 java.lang.Process CommandLauncher.exec(CommandLine cmd, java.util.Map env, java.io.File workingDir)
          Launches the given command in a new process, in the given working directory.
abstract  java.lang.Process CommandLauncherImpl.exec(CommandLine cmd, java.util.Map env, java.io.File workingDir)
           
 java.lang.Process VmsCommandLauncher.exec(CommandLine cmd, java.util.Map env, java.io.File workingDir)
          Launches the given command in a new process, in the given working directory.
 java.lang.Process Java13CommandLauncher.exec(CommandLine cmd, java.util.Map env, java.io.File workingDir)
          Launches the given command in a new process, in the given working directory
 java.lang.Process OS2CommandLauncher.exec(CommandLine cmd, java.util.Map env, java.io.File workingDir)
          Launches the given command in a new process, in the given working directory.
 java.lang.Process WinNTCommandLauncher.exec(CommandLine cmd, java.util.Map env, java.io.File workingDir)
          Launches the given command in a new process, in the given working directory.
 



Copyright © 2001-2010 Apache Software Foundation. All Rights Reserved.