
pw.prok.kdiff.PatchResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kDiff Show documentation
Show all versions of kDiff Show documentation
Library for generating and applying diff/patch files
The newest version!
package pw.prok.kdiff;
import pw.prok.kdiff.delta.Delta;
import java.util.List;
public class PatchResult {
private final List result;
private final List> hunks;
private final List> rejects;
public PatchResult(List result, List> hunks, List> rejects) {
this.result = result;
this.hunks = hunks;
this.rejects = rejects;
}
public List getResult() {
return result;
}
public List> getHunks() {
return hunks;
}
public List> getRejects() {
return rejects;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy