> Thanks for the replies. eggsy, I've reviewed your blog post and tried
> to add the @UiTemplate annotation and still the same issue. I may be
> wrong, but it seems like it doesn't see my module inherits UiBinder,
> even though it is declared in the module gwt.xml file.
> On Nov 6, 4:44 am, eggsy84 <jimbob...@hotmail.com> wrote:
> > I've done a little blog post on this that might help:
> >http://eggsylife.co.uk/2009/11/01/gwt-2-0-declarative-interfaces/
> > On Nov 6, 8:09 am, matthieu vidal <m...@matthieu-vidal.com> wrote:
> > > Hi
> > > You should have a problem with the file Query.ui.xml file name( not in
> > > the right place or bad name probably)
> > > regards
> > > On 6 nov, 06:31, drobe <drob...@gmail.com> wrote:
> > > > Hey, so I've been attempting to work with UiBinder with GWT 2.0 and
> > > > can't seem to see why my module will not compile. Does anyone see
> > > > anything I'm doing wrong? Thanks
> > > > Query.gwt.xml
> > > > <module rename-to='query'>
> > > > <inherits name='com.google.gwt.user.User'/>
> > > > <inherits name='com.google.gwt.uibinder.UiBinder'/>
> > > > <entry-point class='com.xx.client.Query'/>
> > > > </module>
> > > > Query.java
> > > > public class Query implements EntryPoint {
> > > > interface Binder extends UiBinder<DockLayoutPanel, Query> { }
> > > > private static final Binder binder = GWT.create(Binder.class);
> > > > public void onModuleLoad() {
> > > > DockLayoutPanel outer = binder.createAndBindUi(this);
> > > > RootLayoutPanel root = RootLayoutPanel.get();
> > > > root.add(outer);
> > > > root.layout();
> > > > }
> > > > }
> > > > And the error:
> > > > java.lang.RuntimeException: Deferred binding failed for
> > > > 'com.xx.client.Query$Binder' (did you forget to inherit a required
> > > > module?)