Method | Description | |
---|---|---|
build ( string function ) : eveobjects.functionCall |
Builds a functionCall object with no parameters
|
|
build ( string function, List |
Builds a functionCall object with a variable argument list
|
|
build ( string function, string arg ) : eveobjects.functionCall |
Builds a functionCall object with one parameter
|
public build ( string function ) : eveobjects.functionCall | ||
function | string | The function name to be called |
return | eveobjects.functionCall |
public build ( string function, List |
||
function | string | The function name to be called |
arguments | List |
A List of Strings containing the parameters to pass with the functionCall object |
return | eveobjects.functionCall |
public build ( string function, string arg ) : eveobjects.functionCall | ||
function | string | The function name to be called |
arg | string | The parameter to pass with the functionCall object |
return | eveobjects.functionCall |