Interface IMarkupHandler

    • Method Detail

      • setParseConfiguration

        void setParseConfiguration​(ParseConfiguration parseConfiguration)

        Sets the ParseConfiguration object that will be used during the parsing operation. This object will normally have been specified to the parser object during its instantiation or initialization.

        This method is always called by the parser before calling any other event handling method.

        Note that this method can be safely ignored by most implementations, as there are very few scenarios in which this kind of interaction would be consisdered relevant.

        Parameters:
        parseConfiguration - the configuration object.
      • setParseStatus

        void setParseStatus​(ParseStatus status)

        Sets the ParseStatus object that will be used during the parsing operation. This object can be used for instructing the parser about specific low-level conditions arisen during event handling.

        This method is always called by the parser before calling any other event handling method.

        Note that this method can be safely ignored by most implementations, as there are very few and very specific scenarios in which this kind of interaction with the parser would be needed. It is therefore mainly for internal use.

        Parameters:
        status - the status object.
      • setParseSelection

        void setParseSelection​(ParseSelection selection)

        Sets the ParseSelection object that represents the different levels of selectors (if any) that are currently active for the fired events.

        This method is always called by the parser before calling any other event handling method.

        Note that this method can be safely ignored by most implementations, as there are very few scenarios in which this kind of interaction would be consisdered relevant.

        Parameters:
        selection - the selection object.