Class NullParseListener

java.lang.Object
com.aquima.interactions.expressions.NullParseListener
All Implemented Interfaces:
IParseListener

public class NullParseListener extends Object implements IParseListener
This parse listener drops all incoming errors and warnings.
Since:
6.1
Author:
F. van der Meer
  • Constructor Details

    • NullParseListener

      public NullParseListener()
  • Method Details

    • report

      public void report(int startPosition, int endPosition, ErrorMessage message, Severity severity)
      Description copied from interface: IParseListener
      This method is invoked by the parser when a problem is detected during the parse of an expression.
      Specified by:
      report in interface IParseListener
      Parameters:
      startPosition - The start position in the expression where the warning was detected.
      endPosition - The end position in the expression of the part that generated the warning.
      message - Object containing the details of the warning that was detected.
      severity - The severity of the problem that was detected.