|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
org.gradle.process.BaseExecSpecorg.gradle.process.ProcessForkOptions
org.gradle.process.ExecSpec
public interface ExecSpec extends BaseExecSpec
Specified the options for executing some command.
| Method Summary | |
|---|---|
ExecSpec
|
args(java.lang.Object args)
Adds arguments for the command to be executed. |
ExecSpec
|
args(java.lang.Iterable args)
Adds arguments for the command to be executed. |
ExecSpec
|
commandLine(java.lang.Object args)
Sets the full command line, including the executable to be executed plus its arguments. |
ExecSpec
|
commandLine(java.lang.Iterable args)
Sets the full command line, including the executable to be executed plus its arguments. |
java.util.List
|
getArgs()
Returns the arguments for the command to be executed. |
ExecSpec
|
setArgs(java.lang.Iterable args)
Sets the arguments for the command to be executed. |
void
|
setCommandLine(java.lang.Object args)
Sets the full command line, including the executable to be executed plus its arguments. |
void
|
setCommandLine(java.lang.Iterable 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, setStandardOutput |
| Methods inherited from interface ProcessForkOptions | |
|---|---|
| copyTo, environment, environment, executable, getEnvironment, getExecutable, getWorkingDir, setEnvironment, setExecutable, setWorkingDir, workingDir |
| Method Detail |
|---|
public ExecSpec args(java.lang.Object args)
args - args for the command
public ExecSpec args(java.lang.Iterable args)
args - args for the command
public ExecSpec commandLine(java.lang.Object args)
args - the command plus the args to be executed
public ExecSpec commandLine(java.lang.Iterable args)
args - the command plus the args to be executed
public java.util.List getArgs()
public ExecSpec setArgs(java.lang.Iterable args)
args - args for the command
public void setCommandLine(java.lang.Object args)
args - the command plus the args to be executed
public void setCommandLine(java.lang.Iterable args)
args - the command plus the args to be executed
Groovy Documentation