Question

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.

Was it helpful?

Solution

You can call

BasicNewResourceWizard.selectAndReveal(resource, workbenchWindow);

To select any resource.

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top