interface for windows that display progress bars
[jalview.git] / src / jalview / gui / IProgressIndicator.java
1 package jalview.gui;\r
2 \r
3 /**\r
4  * Visual progress indicator interface.\r
5  * @author JimP\r
6  *\r
7  */\r
8 public interface IProgressIndicator\r
9 {\r
10   /**\r
11    * Visual indication of some operation taking place. \r
12    * On first call with a particular ID an indicator with the given message is added. The indicator is removed with a second call with same ID. \r
13    * @param message - displayed message for operation\r
14    * @param id - unique handle for this indicator\r
15    */\r
16   public abstract void setProgressBar(String message, long id);\r
17 \r
18 }