I want to create a script that adds a main method to a class (stereotyped JavaClass). The problem comes with the definition of the parameter (the list of the command line arguments).
In Java the parameter of this method must be a String[] (not List<String>). Thus I need to define the collection to use for this parameter (Array). How can I do this whitin a jython script?
Best regards
Pierre