blob: d94a06f6f0f7fd171d0af344080aefefa860d4da [file] [log] [blame]
package aQute.bnd.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;
}
}