Interface ProgressListener

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void setIndeterminate​(boolean bool)
      Allows the object performing the action to indicate that it won't be able to report back progress information.
      void setNote​(java.lang.String note)
      Sets some sort of note or information about the current position.
      void setProgress​(int val)
      Used to update the current progress value, should be between 0 and the value sent to setProgressMax.
      void setProgressMax​(int max)
      Used to indicate the upper bound of value that will be passed to setProgress.
    • Method Detail

      • setProgressMax

        void setProgressMax​(int max)
        Used to indicate the upper bound of value that will be passed to setProgress.
      • setProgress

        void setProgress​(int val)
        Used to update the current progress value, should be between 0 and the value sent to setProgressMax.
      • setNote

        void setNote​(java.lang.String note)
        Sets some sort of note or information about the current position.
      • setIndeterminate

        void setIndeterminate​(boolean bool)
        Allows the object performing the action to indicate that it won't be able to report back progress information.