Package com.github.difflib.algorithm
Interface DiffAlgorithmListener
-
public interface DiffAlgorithmListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
diffEnd()
void
diffStart()
void
diffStep(int value, int max)
This is a step within the diff algorithm.
-
-
-
Method Detail
-
diffStart
void diffStart()
-
diffStep
void diffStep(int value, int max)
This is a step within the diff algorithm. Due to different implementations the value is not strict incrementing to the max and is not garantee to reach the max. It could stop before.- Parameters:
value
-max
-
-
diffEnd
void diffEnd()
-
-