01: package org.drools.rule;
02:
03: public class LineMappings {
04: private String className;
05: private int startLine;
06: private int offset;
07:
08: public LineMappings(final String className) {
09: this .className = className;
10: }
11:
12: public String getClassName() {
13: return this .className;
14: }
15:
16: public void setStartLine(final int startLine) {
17: this .startLine = startLine;
18: }
19:
20: public int getStartLine() {
21: return this .startLine;
22: }
23:
24: public void setOffset(final int offset) {
25: this .offset = offset;
26: }
27:
28: public int getOffset() {
29: return this.offset;
30: }
31:
32: }
|