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