Re: GWT Cross Site Iframe Linker and Script Tags

2015-09-24 Thread Greg
Hi I know it's an old thread but I used few hours to quickly implement a linker and special entry point class that uses script tags from gwt.xml files and injects them automatically using ScriptInjector. There are few changes required in EntryPoint classes but they are not that intrusive.

Re: Why code ends up in Left over Soyc report? How to analyze?

2015-09-24 Thread Ed
Anybody knows a better way to ensure that the interface isn't replaced by the only implementing class by the Static code analyzer during compilation? Above I did it by creating another implementing class, but just wondering if there isn't an easier way. Maybe some annotation to tell the

JsInterop callback function with parameters

2015-09-24 Thread Cristian Rinaldi
Hey: I'm using JsInterop to map some JS APIs. What is the best way to map a callback to receive multiple parameters? For example, a jQuery click handler: function (event, params) Java could be: Function (Event, Object []), but then is complicated to manipulate the "Object []", there is