I have made a plugin for eclipse that imports projects. I wish to make it so that the newly imported project will be selected by default when the import successfully completes. I do not know how to fire a selection event on the newly imported project.

有帮助吗?

解决方案

You can call

BasicNewResourceWizard.selectAndReveal(resource, workbenchWindow);

To select any resource.

In your case resource would be the IProject you have created.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top