blob: abf567c2208eb1ca8a99af5c3683053609b4944f [file] [log] [blame]
package aQute.lib.properties;
public class Region implements IRegion {
private final int length;
private final int offset;
public Region(int length, int offset) {
this.length = length;
this.offset = offset;
}
public int getLength() {
return length;
}
public int getOffset() {
return offset;
}
}