Getting changed Lines from ChangeSet
I want to get the lines of code that have changed from IChangeSet
I am trying with a stand alone Java Client.
I get the changeset, the changes and the IVersionableHandle
Is it possible to extract the lines that have changed ?
IChangeSet changeSet = (IChangeSet)changeItem;
Collection<IChange> changes = changeSet.changes();
for(IChange change : changes){
IVersionableHandle handle = change.item();
}
I am trying with a stand alone Java Client.
I get the changeset, the changes and the IVersionableHandle
Is it possible to extract the lines that have changed ?
IChangeSet changeSet = (IChangeSet)changeItem;
Collection<IChange> changes = changeSet.changes();
for(IChange change : changes){
IVersionableHandle handle = change.item();
}