Stuart McCulloch | d482610 | 2012-06-26 16:34:24 +0000 | [diff] [blame^] | 1 | package aQute.lib.properties; |
2 | |||||
3 | public 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 | } |