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(String argument)
          Add a single argument.
 CommandLine CommandLine.addArgument(String argument, boolean handleQuoting)
          Add a single argument.
 CommandLine CommandLine.addArguments(String arguments)
          Add multiple arguments.
 CommandLine CommandLine.addArguments(String[] arguments)
          Add multiple arguments.
 CommandLine CommandLine.addArguments(String[] arguments, boolean handleQuoting)
          Add multiple arguments.
 CommandLine CommandLine.addArguments(String arguments, boolean handleQuoting)
          Add multiple arguments.
static CommandLine CommandLine.parse(String line)
          Create a command line from a string.
static CommandLine CommandLine.parse(String line, Map substitutionMap)
          Create a command line from a string.
 

Methods in org.apache.commons.exec with parameters of type CommandLine
 int Executor.execute(CommandLine command)
          Methods for starting synchronous execution.
 int DefaultExecutor.execute(CommandLine command)
           
 void Executor.execute(CommandLine command, ExecuteResultHandler handler)
          Methods for starting asynchronous execution.
 void DefaultExecutor.execute(CommandLine command, ExecuteResultHandler handler)
           
 int Executor.execute(CommandLine command, Map environment)
          Methods for starting synchronous execution.
 int DefaultExecutor.execute(CommandLine command, Map environment)
           
 void Executor.execute(CommandLine command, Map environment, ExecuteResultHandler handler)
          Methods for starting asynchronous execution.
 void DefaultExecutor.execute(CommandLine command, Map environment, ExecuteResultHandler handler)
           
protected  Process DefaultExecutor.launch(CommandLine command, Map env, 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 DefaultProcessingEnvironment.getProcEnvCommand()
          Determine the OS specific command line to get a list of environment variables.
protected  CommandLine OpenVmsProcessingEnvironment.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
 Process CommandLauncherProxy.exec(CommandLine cmd, Map env)
          Launches the given command in a new process.
 Process CommandLauncherImpl.exec(CommandLine cmd, Map env)
           
 Process VmsCommandLauncher.exec(CommandLine cmd, Map env)
          Launches the given command in a new process.
 Process CommandLauncher.exec(CommandLine cmd, Map env)
          Launches the given command in a new process.
 Process WinNTCommandLauncher.exec(CommandLine cmd, Map env, File workingDir)
          Launches the given command in a new process, in the given working directory.
abstract  Process CommandLauncherImpl.exec(CommandLine cmd, Map env, File workingDir)
           
 Process VmsCommandLauncher.exec(CommandLine cmd, Map env, File workingDir)
          Launches the given command in a new process, in the given working directory.
 Process CommandLauncher.exec(CommandLine cmd, Map env, File workingDir)
          Launches the given command in a new process, in the given working directory.
 Process Java13CommandLauncher.exec(CommandLine cmd, Map env, File workingDir)
          Launches the given command in a new process, in the given working directory
 Process OS2CommandLauncher.exec(CommandLine cmd, Map env, File workingDir)
          Launches the given command in a new process, in the given working directory.
 



Copyright © 2009 Apache Software Foundation. All Rights Reserved.