Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with PlaceManager in abstract Presenter #827

Open
AreaInsights opened this issue Dec 13, 2017 · 1 comment
Open

Issue with PlaceManager in abstract Presenter #827

AreaInsights opened this issue Dec 13, 2017 · 1 comment

Comments

@AreaInsights
Copy link

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

@AreaInsights
Copy link
Author

Sorry, the issue was something other completely.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant