Interface MessagesListener

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      void addMessage​(java.util.logging.Level level, java.lang.String message)
      Allows ClasspathlessCompiler to send runtime updates to caller.
      default void addMessage​(java.util.logging.Level level, java.lang.String format, java.lang.Object... args)
      Allows ClasspathlessCompiler to send runtime updates to caller.
    • Method Detail

      • addMessage

        void addMessage​(java.util.logging.Level level,
                        java.lang.String message)
        Allows ClasspathlessCompiler to send runtime updates to caller.
        Parameters:
        level - Severity of information.
        message - The message.
      • addMessage

        default void addMessage​(java.util.logging.Level level,
                                java.lang.String format,
                                java.lang.Object... args)
        Allows ClasspathlessCompiler to send runtime updates to caller.
        Parameters:
        level - Severity of information.
        format - Format string as given to MessageFormat.
        args - Arguments to format.