java_constructor
ret = java_constructor(class[, arg1[, arg2[, arg3[, ...arg20]]]])
This function creates a Java object by calling class and passing it the provided arguments arg1, arg2, arg3, and so on. Up to 20 arguments can be passed to the called class. The value returned by the java_constructor function is the object created by the called constructor.
Related Topics