Frage

I'm debugging and developing a GWT module through Development Mode. While starting DM I get the following JSNI error: "Missing qualifier on instance method". But, when I compile it, I get no compilation errors. Is it a DM issue or just my fault?

Tip: This is the function I'm trying to access inside native method:

public static native void fbLogin () /*-{
    @pack1.pack2.pack3::someMethod(Ljava/lang/String;)(param);
}-*/;

Thanks!

War es hilfreich?

Lösung

You have either, to declare someMethod as static or to pass the instance object to your jsni block:

public static native void fbLogin (pack3 instance) /*-{
   instance.@pack1.pack2.pack3::someMethod(Ljava/lang/String;)(param);
}-*/;

Andere Tipps

You are missing static in the method which JSNI function is calling, the Java method should be

public static void someMethod(String param){
}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top