public class A{
private void javaMethod(int a,int b){}
private native void init()/*-{
function OnMouseMove(e) {
//blow calling doesn't work
this.@p::javaMethod(Ljava/...teger;Ljava.../Integer;)(intVal,intVal);
}
}-*/;
}
As described above,how to make that invoking work?
Answered on the Google Group: https://groups.google.com/d/msg/google-web-toolkit/qE2-L4u_t4s/YqjOu-bUfsAJ
Copied here for reference and convenience:
First,
intis notjava.lang.Integer, so your method signature in JSNI is wrong; it should readjavaMethod(II).(I suppose the
@p::while javaMethod is defined in class A is over-simplification in your question, but is OK in your code)You’ll also probably have a problem with
this, that might not be what you think it is. A common pattern is to assign the current object (this, at the time) to a variable that you’ll reference from your closure: