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
Modifier and TypeMethodDescriptionvoid
parseLocationUpdate
(long lineNo, long columnNo) Signals an update of a parser's progress, indicated by a line and column number.
-
Method Details
-
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.
-