I need to call a Java method from Xtend that expects a two dimensional array such as:
javafunc (String [][] {{"0","1"}.{"2","3"}})
My initial thought is to write a Java static method that accepts a List of arrays, converts it to a two dimensional array and calls the underlying Java method. Before I do this I would like to know if there are better solutions. This one is a bit ugly.