org.jrdf.parser
Interface ParseLocationListener
public interface ParseLocationListener
A listener interface for listening to the parser's progress.
Method Summary |
void |
parseLocationUpdate(int lineNo,
int columnNo)
Signals an update of a parser's progress, indicated by a line
and column number. |
parseLocationUpdate
void parseLocationUpdate(int lineNo,
int columnNo)
- Signals an update of a parser's progress, indicated by a line
and column number. Both line and column number start with value 1
for the first line or column.
- Parameters:
lineNo
- The line number, or -1 if none is available.columnNo
- The column number, or -1 if none is available.