Interface CompilerListener


  • public interface CompilerListener
    This is an interface that should be implemented by the emuStudio, and/or other plugins that want to process the output of the compiler.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onFinish()
      This method is called whenever the compiler finishes the compilation.
      void onMessage​(CompilerMessage compilerMessage)
      Method will be invoked when compiler would like to print info message.
      void onStart()
      This method is called whenever a compiler begins to work.
    • Method Detail

      • onStart

        void onStart()
        This method is called whenever a compiler begins to work.
      • onMessage

        void onMessage​(CompilerMessage compilerMessage)
        Method will be invoked when compiler would like to print info message.
        Parameters:
        compilerMessage - Message from the compiler
      • onFinish

        void onFinish()
        This method is called whenever the compiler finishes the compilation.