I have an eclipse rcp application in which I created an editor that extends EditorPart.
I want to do some work with allocation resources in my editor action close(), so I want to override its closing action or any method that just came to action before closing the event.
I tried dispose(), but he was already working on it late.
Or there is some specific listener who listens for a closed event.
I want to have this:
@override
public void close()
{
}
Update: Basically I want to intercept the closing event for the editor.
source
share