JAL-3690 separate startup and poll code in SeqAnnotationCalcWorker
[jalview.git] / src / jalview / gui / IProgressIndicator.java
index 981e94c..c250aca 100644 (file)
@@ -34,7 +34,8 @@ public interface IProgressIndicator
    * is removed with a second call with same ID.
    * 
    * @param message
-   *          - displayed message for operation
+   *          - displayed message for operation. Please ensure message is
+   *          internationalised.
    * @param id
    *          - unique handle for this indicator
    */
@@ -55,4 +56,11 @@ public interface IProgressIndicator
    */
   boolean operationInProgress();
 
+  /**
+   * Remove progress bar with a given id from the panel.
+   * 
+   * @param id
+   */
+  void removeProgressBar(long id);
+
 }