List<String[]> rawChunk = new ArrayList<String[]>(); Patch<String> patch = new Patch<String>(); patch.addDelta(new ChangeDelta<String>(new Chunk<String>( old_ln - 1, oldChunkLines), new Chunk<String>( new_ln - 1, newChunkLines))); patch.addDelta(new ChangeDelta<String>(new Ch...
/*** Returns the deltas between beforeText and afterText as a line separated String* using delta.toString()* For more detailed diffs, use getPatch() or getUnifiedDiffStrings()** @param difftype defines the type of diffs to include in the String* @return diffs as line-separated String ...