I have a short question regarding IJavaElementDelta. Is there a way to get
a statement-level delta, i.e. a delta that not only tells me that the
internal definition of a method has changed but even which statements were
added/removed/moved/changed?
Eric Bodden a écrit :
> I have a short question regarding IJavaElementDelta. Is there a way to
> get a statement-level delta, i.e. a delta that not only tells me that
> the internal definition of a method has changed but even which
> statements were added/removed/moved/changed?
There is no such fine grained delta.
--
Olivier
Thanks, that's what I thought as well. So I would just have to implement a tree comparison algorithm using the DOM API. I am wondering if its possible to actually extend the IJavaElementDelta to do this. Any thoughts on that? Thanks again!