Method | Description | |
---|---|---|
AddScriptArgument ( String name, Object value ) : |
Adds or sets an argument to pass to the script.
|
|
Build ( ) : |
Creates a The |
|
RemoveScriptArgument ( String name ) : |
Removes the given script argument.
|
|
ScriptContextBuilder ( ) : System |
Creates an empty builder.
|
|
ScriptContextBuilder ( String scriptLanguage, String scriptText ) : System |
Creates a builder with the required parameters specified.
|
public AddScriptArgument ( String name, Object value ) : |
||
name | String | The name of the argument. Must not be null. |
value | Object | The value of the argument. Must be one of /// type types that the framework can serialize. |
return |
public RemoveScriptArgument ( String name ) : |
||
name | String | The name of the argument. Must not be null. |
return |
public ScriptContextBuilder ( String scriptLanguage, String scriptText ) : System | ||
scriptLanguage | String | a string that identifies the language
/// in which the script is written
/// (e.g., bash , csh ,
/// Perl4 or Python ). |
scriptText | String | The text (i.e., actual characters) of the script. |
return | System |