Domanda

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.

È stato utile?

Soluzione

You can call

BasicNewResourceWizard.selectAndReveal(resource, workbenchWindow);

To select any resource.

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top