-
Notifications
You must be signed in to change notification settings - Fork 134
Description
I'm having an issue where I pass the PlaceManager from an inhered Presenter's constructor to it's super abstract Presenter constructor. Calls to revealPlace work from the inhered Presenter but not from the super Presenter.
The revealPlace methods is called without error, placeManager is fine (not null). But the address bar doesn't change and no other place events are triggered. Any ideas why this might be?
Using latest GWTP. My abstract Presenter is in another project/module.
public class AppPresenter extends AbstractAppPresenter...
{
public void onBind()
{
super.onBind();
placeManager.revealPlace(...); //works
}
}
public class AbstractAppPresenter extends Presenter...
{
public void onBind()
{
placeManager.revealPlace(...); //doesn't works
}
}
Thanks for your help