Skip to content

Issue with PlaceManager in abstract Presenter #827

@AreaInsights

Description

@AreaInsights

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions