Getting changed Lines from ChangeSet
![](http://jazz.net/_images/myphoto/2b48ca3b0dc36abc8cb05fa722d86791.jpg)
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();
}