Overloaded method definitions and invocations

Overloaded method definitions and invocations is allowed in the constructions of the Jacl scripting language, but is not supported in the Jython scripting language. If your Jacl script has two or more methods with the same name but different signatures (such as, contains different parameters), the Jacl2Jython program converts each of the definitions. However, this preliminary converted Jython script results in a runtime error.
You must manually change each Jython overloaded method names into different names, and change the matching invocations to correctly use these different names.

Feedback