blob: abf567c2208eb1ca8a99af5c3683053609b4944f [file] [log] [blame]
Stuart McCullochd4826102012-06-26 16:34:24 +00001package aQute.lib.properties;
2
3public class Region implements IRegion {
4
5 private final int length;
6 private final int offset;
7
8 public Region(int length, int offset) {
9 this.length = length;
10 this.offset = offset;
11 }
12
13 public int getLength() {
14 return length;
15 }
16
17 public int getOffset() {
18 return offset;
19 }
20}