Interface ParseLocationListener

  • All Known Implementing Classes:
    SimpleParseLocationListener

    public interface ParseLocationListener
    A listener interface for listening to the parser's progress.
    • 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.