45. 从 Teamcenter10.1 开始移除 AIFDesktop.postPerspective
45. 从 Teamcenter10.1 开始移除 AIFDesktop.postPerspectiveAIFDesktop.postPerspective()方法从 Teamcenter RAC 中移除,如果有客制化代码使用该
方法会在编译时报错
方案:
从 TC10.1 开始,建议使用下面的方法在新视图中打开组件。
IWorkbenchWindow dwindow = PlatformUI.getWorkbench
().getActiveWorkbenchWindow();
PlatformUI.getWorkbench().showPerspective( perspectiveID, dwindow );
AbstractAIFUIApplication localAbstractAIFUIApplication =
AIFUtility.getCurrentApplication();
localAbstractAIFUIApplication.open( component );
页:
[1]