Re: GWT 2.8 compile fails; 2.7 works

2016-11-30 Thread Jens
> *My question is*: Should this have failed in GWT 2.7? Or is there a bug > in GWT 2.8? > Given that the error message The interface UiBinder cannot be implemented more than once with different arguments: UiBinder and UiBinder< CollectionManagementLayout,SomeViewImpl> already sounds dumb (a

Re: GWT 2.8 compile fails; 2.7 works

2016-11-30 Thread Jens
> Oops! I do get the error. > Your error is a different one. Your error means you either have GWT 2.7 and 2.8 on classpath or some of your 3rd party libraries have bundled some older copies of UiBinder generator files. -- J. -- You received this message because you are subscribed to the Goo

Re: GWT 2.8 compile fails; 2.7 works

2016-11-30 Thread Velusamy Velu
Here's the remainder of the stack trace at com.google.gwt.dev.jjs.ast.JModVisitor.accept(JModVisitor.java:273) ... 46 more [ERROR] at Loader.java(29): GWT.create(Loader$LoaderUiBinder. class) com.google.gwt.dev.jjs.ast.JMethodCall [ERROR] at Loader.java(29)

Re: GWT 2.8 compile fails; 2.7 works

2016-11-30 Thread Velusamy Velu
Oops! I do get the error. I was wrong when I said it worked for me. When I attempted to change the GWT version from 2.7.0 to 2.8.0 in eclipse, eclipse switched it back to 2.7.0 for reasons I cannot figure out. Given below are the offending UiBinder code, the corresponding Java code, and the stac

Re: GWT 2.8 compile fails; 2.7 works

2016-11-22 Thread Velusamy Velu
This may or may not help you but I want to share it with you. The moment GWT 2.8 release was announced I tried it and ran into similar problems. I don't remember the exact error messages but it was about the UiBinder. Without further attempts I just gave up. After seeing your post I gave it a t

GWT 2.8 compile fails; 2.7 works

2016-11-21 Thread jgindin
In our app, we have a UiBinder widget (SomeViewImpl) which has, as its root element, a widget which itself is a UiBinder widget (CollectionManagementLayout). My UiBinder declaration in SomeViewImpl looks like this: interface CollectionManagementPanelUiBinder extends UiBinder {} The UiBinder X