Package org.eclipse.rdf4j.rio
Interface ParseLocationListener
-
- All Known Implementing Classes:
SimpleParseLocationListener
public interface ParseLocationListener
A listener interface for listening to the parser's progress.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
parseLocationUpdate(long lineNo, long columnNo)
Signals an update of a parser's progress, indicated by a line and column number.
-
-
-
Method Detail
-
parseLocationUpdate
void parseLocationUpdate(long lineNo, long 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.
-
-