-->

How to reset perspective programmaticly in Eclipse

2019-07-25 05:43发布

问题:

I just added 2 perspectives in my RCP App. I can switch from one to another without problems.

But I didnt find a way to reset perspective, for example if I close a Part excidently I need to reset my perspective.

  1. PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().resetPerspective();

this didnt work cause I use E4.

  1. -clearPersistedState -persistState false

is not a solution cause I need to reset without restart my App.

Thank you all for help

回答1:

Use the resetPerspective method of EModelService:

public void resetPerspectiveModel(MPerspective persp, MWindow window)

Note that PlatformUI and associated APIs can't be used in a pure e4 application.