Package com.day.util.diff
Class Diff.Change
java.lang.Object
com.day.util.diff.Diff.Change
- Enclosing class:
Diff
The result of the diff.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal int
# lines of file 0 changed here.final int
# lines of file 1 changed here.final int
Line number of 1st deleted line.final int
Line number of 1st inserted line.Previous or next edit command. -
Method Summary
-
Field Details
-
nextChange
Previous or next edit command. -
inserted
public final int inserted# lines of file 1 changed here. -
deleted
public final int deleted# lines of file 0 changed here. -
line0
public final int line0Line number of 1st deleted line. -
line1
public final int line1Line number of 1st inserted line.
-