I am developing an Eclipse RCP application. In this application I am importing the project using an Import Wizard. I want to get notified after the Import wizard is over.
Please help me!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would add an
org.eclipse.core.resources.IWorkspace.addResourceChangeListener(IResourceChangeListener)to the workspace when you launch the import wizard. Monitor the events and see iforg.eclipse.core.resources.IResourceChangeEvent.POST_CHANGEis issued when the import it done.