Re: GWT-compiled object referenced in JSNI

2011-03-31 Thread tlep
D'Oh! Looking at the FAQ, I found this, which answers my question: http://code.google.com/support/bin/answer.py?hl=enanswer=75695 On Mar 30, 9:56 am, tlep thomas.lepkow...@gmail.com wrote: Hello, I've been working on a GWT client-side class, for example class Foo {   public void sayit

GWT-compiled object referenced in JSNI

2011-03-30 Thread tlep
Hello, I've been working on a GWT client-side class, for example class Foo { public void sayit() { Window.alert(Hello); } } now I have a JSNI function: public static native void doSomething(JavaScriptObject obj) /*-{ // call the Foo.sayit() method here }-*/;