Interface ExecSpec
- All Superinterfaces:
BaseExecSpec, ProcessForkOptions
- All Known Implementing Classes:
AbstractExecTask, Exec, RunTestExecutable
Specified the options for executing some command.
-
Method Summary
Modifier and TypeMethodDescriptionAdds arguments for the command to be executed.Adds arguments for the command to be executed.commandLine(Iterable<?> args) Sets the full command line, including the executable to be executed plus its arguments.commandLine(Object... args) Sets the full command line, including the executable to be executed plus its arguments.getArgs()Returns the arguments for the command to be executed.Argument providers for the application.Sets the arguments for the command to be executed.Sets the arguments for the command to be executed.voidsetCommandLine(Iterable<?> args) Sets the full command line, including the executable to be executed plus its arguments.voidsetCommandLine(Object... args) Sets the full command line, including the executable to be executed plus its arguments.voidsetCommandLine(List<String> args) Sets the full command line, including the executable to be executed plus its arguments.Methods inherited from interface BaseExecSpec
getCommandLine, getErrorOutput, getStandardInput, getStandardOutput, isIgnoreExitValue, setErrorOutput, setIgnoreExitValue, setStandardInput, setStandardOutputMethods inherited from interface ProcessForkOptions
copyTo, environment, environment, executable, getEnvironment, getExecutable, getWorkingDir, setEnvironment, setExecutable, setExecutable, setWorkingDir, setWorkingDir, workingDir
-
Method Details
-
setCommandLine
-
setCommandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args- the command plus the args to be executed
-
setCommandLine
Sets the full command line, including the executable to be executed plus its arguments.- Parameters:
args- the command plus the args to be executed
-
commandLine
-
commandLine
-
args
-
args
-
setArgs
-
setArgs
-
getArgs
-
getArgumentProviders
List<CommandLineArgumentProvider> getArgumentProviders()Argument providers for the application.- Since:
- 4.6
-