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

org.pitest.mutationtest.build.intercept.RegionIndex Maven / Gradle / Ivy

The newest version!
package org.pitest.mutationtest.build.intercept;

public class RegionIndex {
    private final int start;
    private final int end;

    public RegionIndex(int start, int end) {
        this.start = start;
        this.end = end;
    }

    public int start() {
        return start;
    }

    public int end() {
        return end;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy