LOTUSSCRIPT LANGUAGE


Invoking a method in a Java object
There are two ways to invoke a method in a Java object.

1. Use the dot notation in JavaObject.

2. Use the JavaMethod ADT.

The dot notation method is easier and more intuitive, but certain restrictions apply. The JavaMethod ADT method is significantly harder to use but is more appropriate for general use. Dot notation is ambiguous if any of the the conditions listed below occur. If they do, you can use the more general mechanism to resolve the ambiguity.


See Also