Re: Strange (BAD?) code generated

2016-09-14 Thread Jens
> Is this GWT library exported as JS only? ... > So I don't get it. What am I missing? > The library exists as GWT library (*.jar file with *.gwt.xml) so you can use it right away in your GWT app, but the library is also exported by the library maintainer to JavaScript so that JavaScript peop

Re: Strange (BAD?) code generated

2016-09-14 Thread Vassilis Virvilis
I am not sure I follow. Is this GWT library exported as JS only? if yes My application sees the js only and knows nothing about the types (only from documentation) and has to redefine them in jsinterop so it will use @JsType(isNative=true) since we are talking about a pure JS library with native

Re: Strange (BAD?) code generated

2016-09-14 Thread Jens
> Could you elaborate on the use case @jstype(isNative=false) and > -generateJsInteropExports > is __not__ specified in the command line. > > Is there any valid use for such a combination? > Sure. Pick any GWT library that might provide itself as pure JS library as well by using -generateJsIn

Re: Strange (BAD?) code generated

2016-09-14 Thread Vassilis Virvilis
Hi Could you elaborate on the use case @jstype(isNative=false) and -generateJsInteropExports is __not__ specified in the command line. Is there any valid use for such a combination? On Tue, Sep 13, 2016 at 6:41 PM, Thomas Broyer wrote: > > On Tuesday, September 13, 2016 at 5:27:50 PM UTC+2, Ki

Re: GWT Compile Issues: gwt-maven-plugin & gwtjackson

2016-09-14 Thread harshyadav
Ok was able to solve it, if anyone else having the same issue, here is the work around. With Jackson 2.8x String.format was introduced in "JsonIgnoreProperties". The work around would be to either use 2.7x OR super source " JsonIgnoreProperties" and remove reference to String.format() Here is t