Interface XsltMessageLogger

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface XsltMessageLogger
Interface for handling xsl:message and xsl:assert output from XSLT transformations. Note that the same message handler may be called to process messages emanating from multiple threads. The message consumer must therefore be thread-safe; and the order in which messages are passed to the message handler is not always predictable.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(String message)
    Consumes a message generated by a XSLT transformation.
  • Method Details

    • accept

      void accept(String message)
      Consumes a message generated by a XSLT transformation.
      Parameters:
      message - the message generated by the XSLT transformation.