difflib.event.PatchHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of diffutils Show documentation
Show all versions of diffutils Show documentation
The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java.
package difflib.event;
import difflib.Patch;
/**
* Interface to handle list of patch about specific file.
*/
public interface PatchHandler {
void handle(String originalPath, String revisedPath, Patch patch);
}