Eclipse RCP插件开拓中常常挪用的几个要领
1、重启RCP应用
PlatformUI.getWorkbench().restart();
2、在插件资源库中查找Perspective(其它extend point资源的得到雷同)
IPerspectiveDescriptoripd=PlatformUI.getWorkbench ().getPerspectiveRegistry().findPerspectiveWithId (FavoritePerspective.ID); //按照plugin.xml中的ID查找
3、获恰当前RCP应用的shell
Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow ().getShell();
4、显示辅佐信息
PlatformUI.getWorkbench().getHelpSystem().displayHelp();