[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform] Re: handle deleting a resource

I've found how to handle the event:

public boolean visit(IResourceDelta delta) {
if (delta.getKind() == IResourceDelta.REMOVED) {
// code here
}
but now how can I get the list of opened page and close it if they are deleted ?