All Downloads are FREE. Search and download functionalities are using the official Maven repository.

difflib.event.PatchHandler Maven / Gradle / Ivy

Go to download

The DiffUtils library for computing diffs, applying patches, generationg side-by-side view in Java.

There is a newer version: 1.5.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy