Interface LayoutParser.MessageListener

  • Enclosing interface:
    LayoutParser

    public static interface LayoutParser.MessageListener
    This inner interface defines the callback interface used by the Parser to report warning and error conditions back to the caller.
    Since:
    MicroStrategy Web 8.0.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void error​(java.lang.String msg)
      When called, it is supplied a message that represents an error condition.
      void warning​(java.lang.String msg)
      When called, it is supplied a message that represents a warning condition.
    • Method Detail

      • warning

        void warning​(java.lang.String msg)
        When called, it is supplied a message that represents a warning condition.
        Parameters:
        msg - The warning message.
      • error

        void error​(java.lang.String msg)
        When called, it is supplied a message that represents an error condition.
        Parameters:
        msg - The error message.