Created
March 11, 2012 22:09
-
-
Save imjasonh/2018382 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyEntryPoint implements EntryPoint { | |
public void onModuleLoad() { | |
doJsni(); | |
} | |
private static void staticMethod(int num) { | |
Window.alert("Static method called " + num); | |
} | |
private void instanceMethod(String str) { | |
Window.alert("Instance method called " + str); | |
} | |
private native final void doJsni() /*-{ | |
var btn = document.createElement('button'); | |
btn.onClick = $entry(function() { | |
// To call a static method... | |
@com.this.package.client.MyEntryPoint::staticMethod(int)(3); | |
// To call an instance method on this instance of MyEntryPoint... | |
[email protected]::instanceMethod(Ljava/lang/String;)("string"); | |
}); | |
}-*/; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment