[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.rcp] Re: When is DeleteParticipant called by eclipse framework?
|
Hi. I am calling it form the Package explorer in eclipse 3.3.
I realized deleting an IFile inside the project instead of a IProject at all that delete partecipant is called. So the problem is related to the deletion of IProject with inside the IFile.
Debugging my project some eclipse framework exceptions are caught. They concerned about project accessibility and they are caught even during project creation after the istruction:
project.create(newprojectdescription, null)
So I think I should first of all solve the problem of accessibility during project creation. This problem doesn't avoid project creation process because project is rightly created in workspace but when I try to delete it myDeleteParticipant is not called bacause the exception about project accessibility does not let it. Even in this case the project is deleted the same but my participant is not called so my features implemented in myDeleteParticipant are not executed..
In my post (the one after this one)about "project accessibility" explains this problem....
I am really quite desperate because my plugin development was at a good point but now I am a little blocked by this fact....
Thanks
Dan