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

pw.prok.kdiff.PatchResult Maven / Gradle / Ivy

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