Interface IProgressListener


public interface IProgressListener
Used to give progress information typically to IDEs
  • Method Details

    • setText

      void setText(String text)
      Parameters:
      text - the current phase of processing
    • setProgress

      void setProgress(double percentDone)
      Parameters:
      percentDone - how much work is completed so far
    • setCancelledRequested

      void setCancelledRequested(boolean cancelRequested)
      Parameters:
      cancelRequested - true if the caller wants the current compilation to stop asap
    • isCancelledRequested

      boolean isCancelledRequested()
      Returns:
      true if the consumer of the progress info would like the compileation to stop