Hi,
You don't need the comma in your JSNI param defn separating the two
Strings, i.e. you have:
@com.ecopy.gwt.client.Utils::messageBox(Ljava/lang/String;,Ljava/lang/
String;);
it should be
@com.ecopy.gwt.client.Utils::messageBox(Ljava/lang/String;Ljava/lang/
String;);
...but then you also need to provide the parameters, so it should be
something like:
@com.ecopy.gwt.client.Utils::messageBox(Ljava/lang/String;Ljava/lang/
String;)("String1","String2");
//Adam