BBjInterpreter::call

Calls a BBj program with the specified arguments in the BBjInterpreter context and returns the updated argument values. This method behaves like calling a BBj program directly. A BBjException is thrown if the program cannot be executed or execution fails.

Syntax

Return Value Method
List<Object> call(String p_program, Object... p_args)

Parameters

Variable Description
p_program BBj program name to execute.
p_args Arguments passed to the called BBj program. Each argument is mapped to an appropriately typed BBj variable.

Return Value

Returns a List<Object> containing the updated argument values after the BBj program execution.

See Also

BBjAPI

BBj Object Creation and Assignment

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.