Krishnaveni
Krishnaveni

Reputation: 809

Identify changes made by eclipse

I am using Resource Change Listener to track the changes done to my project. Out of these changes i want know if the change was done via Eclipse menu or some other eclipse plugin or if it was typed in by user. Please suggest a way to achieve this.

Upvotes: 1

Views: 70

Answers (1)

AurA
AurA

Reputation: 12363

I am not sure whether there is a direct API to to that, because the interface IResourceDelta that it mainly implements does not have a method on who modified the resource.

You can track most the changes mainly on the resource it modified, but 'who' modified it is an unanswered question for me too. I found this resource useful in this regards, http://www.eclipse.org/articles/Article-Resource-deltas/resource-deltas.html

Upvotes: 3

Related Questions