Re: Newbie help with HandleManager (eventbus) not registrering handler for event in MVP tutorial (modified)

2012-02-15 Thread claus.jespep...@googlemail.com
Thanks for the reply Chris! Meanwhile I figured out the problem; it was a stub implementation by eclipse that I've forgotten in the LogOutEvent class... On Feb 15, 6:08 am, Chris Price wrote: > I can't see how it's happening in your case (either there's more > relevant code or it's very early in

Re: Newbie help with HandleManager (eventbus) not registrering handler for event in MVP tutorial (modified)

2012-02-14 Thread Chris Price
I can't see how it's happening in your case (either there's more relevant code or it's very early in the morning!) but I've previously come across a similar problem. The SimpleEventBus, on which HandlerManager is based, uses deferred methods to only apply changes to the handler lists after the curr

Newbie help with HandleManager (eventbus) not registrering handler for event in MVP tutorial (modified)

2012-02-14 Thread claus.jespep...@googlemail.com
I am new at GWT, but I have working on the MVP tutorial and have encountered some problems: from my EntryPoint class: public void onModuleLoad() { HandlerManager eventBus = new HandlerManager(null); AppController appController = new AppController(eventBus);