01: package org.objectweb.celtix.tools.utils;
02:
03: public class ElementLocator {
04:
05: private int line;
06: private int column;
07:
08: public ElementLocator(int l, int c) {
09: this .line = l;
10: this .column = c;
11: }
12:
13: public int getLine() {
14: return line;
15: }
16:
17: public int getColumn() {
18: return column;
19: }
20:
21: }
|