Class Overview
Diffs words in a line of text.
Summary
| Public Methods |
|
static
List<DiffChunk>
|
diffLine(String originalLine, String revisedLine)
Returns a list of chunks that contain text and the status of the text - unchanged, added or deleted.
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
WordLevelDiffer
()
Public Methods
public
static
List<DiffChunk>
diffLine
(String originalLine, String revisedLine)
Returns a list of chunks that contain text and the status of the text - unchanged, added or deleted.
Parameters
| originalLine
| the original line |
| revisedLine
| the revised line |
Throws
| DifferentiationFailedException
| |