use of org.uberfire.mvp.impl.ForcedPlaceRequest in project kie-wb-common by kiegroup.
the class WorkbenchConfigurationPopup method refreshPerspective.
private void refreshPerspective() {
final PerspectiveActivity currentPerspective = perspectiveManager.getCurrentPerspective();
perspectiveManager.removePerspectiveStates(new org.uberfire.mvp.Command() {
@Override
public void execute() {
if (currentPerspective != null) {
final PlaceRequest pr = new ForcedPlaceRequest(currentPerspective.getIdentifier(), currentPerspective.getPlace().getParameters());
placeManager.goTo(pr);
}
}
});
}
Aggregations