Package com.atlassian.diff
Class DiffViewBean
java.lang.Object
com.atlassian.diff.DiffViewBean
A wrapper class to provide additional views on a list of
DiffChunk
s retrieved from the
WordLevelDiffer
.- Since:
- v4.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic DiffViewBean
createWordLevelDiff
(String originalLine, String revisedLine) Creates aDiffViewBean
for the given original and revised text lines.
-
Method Details
-
getOriginalChunks
- Returns:
- only the chunks that would have been present in the original text i.e. no Added Chunks
-
getRevisedChunks
- Returns:
- only the chunks that are present in the revised text i.e. no Deleted Chunks
-
getUnifiedChunks
- Returns:
- all the chunks in a single list
-
createWordLevelDiff
Creates aDiffViewBean
for the given original and revised text lines.- Parameters:
originalLine
- the original line of textrevisedLine
- the revised line of text- Returns:
- the diff view bean; or null if there was an exception thrown while calculating the diff.
-