| 1 | package org.eclipse.jdt.core.dom.scope; |
|---|---|
| 2 | |
| 3 | public class ASTPosition { |
| 4 | public int line; |
| 5 | public int column; |
| 6 | public int offset; |
| 7 | public int len; |
| 8 | public String filepath; |
| 9 | |
| 10 | public ASTPosition(int line, int column, int offset, int len, String filepath) { |
| 11 | this.line = line; |
| 12 | this.column = column; |
| 13 | this.offset = offset; |
| 14 | this.len = len; |
| 15 | this.filepath = filepath; |
| 16 | } |
| 17 | } |
| 18 |
Members