通过代码在Eclipse中选择File in Package in Project Explorer

时间:2015-03-02 11:56:08

标签: java eclipse

我有一个Eclipse项目文件的文件路径,我想在包和/或项目浏览器中选择文件。

这是我现在的解决方案,但它不起作用:

public void showVersionInPackageExplorer() {
    [...]
    Object[] filesToSelect = files.toArray();
    IViewPart view;
    view = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
            .findView("org.eclipse.jdt.ui.ProjectExplorer");
    StructuredSelection structuredSelection = new StructuredSelection(filesToSelect);
    view.getSite().getSelectionProvider().setSelection(structuredSelection);
}

0 个答案:

没有答案