getIDLVariable

The getIDLVariable method retrieves the named variable from the IDL process associated with the underlying IDL object.

Note
This method is disabled for applications running in the IDL Virtual Machine.

Syntax

public Object getIDLVariable(String sVar)

Arguments

sVar

The named variable to be retrieved. The returned object is of type JIDLNumber, JIDLString, JIDLObjectI, or JIDLArray.

If the variable is an array, the array is always converted from IDL majority to the standard Java array majority. (For more information on implications of array majority, see Multidimensional Array Storage and Access.)

Examples

See Data Manipulation with a Java Connector Object for an array manipulation example that uses the getIDLVariable, setIDLVariable and executeString methods.