KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > utils > ElementLocator


1 package org.objectweb.celtix.tools.utils;
2
3
4 public class ElementLocator {
5
6     private int line;
7     private int column;
8
9     public ElementLocator(int l, int c) {
10         this.line = l;
11         this.column = c;
12     }
13
14     public int getLine() {
15         return line;
16     }
17
18     public int getColumn() {
19         return column;
20     }
21     
22    
23     
24
25 }
26
Popular Tags