interface for windows that display progress bars
authorjprocter <Jim Procter>
Fri, 1 Aug 2008 13:16:39 +0000 (13:16 +0000)
committerjprocter <Jim Procter>
Fri, 1 Aug 2008 13:16:39 +0000 (13:16 +0000)
src/jalview/gui/IProgressIndicator.java [new file with mode: 0644]

diff --git a/src/jalview/gui/IProgressIndicator.java b/src/jalview/gui/IProgressIndicator.java
new file mode 100644 (file)
index 0000000..4acaba9
--- /dev/null
@@ -0,0 +1,18 @@
+package jalview.gui;\r
+\r
+/**\r
+ * Visual progress indicator interface.\r
+ * @author JimP\r
+ *\r
+ */\r
+public interface IProgressIndicator\r
+{\r
+  /**\r
+   * Visual indication of some operation taking place. \r
+   * 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
+   * @param message - displayed message for operation\r
+   * @param id - unique handle for this indicator\r
+   */\r
+  public abstract void setProgressBar(String message, long id);\r
+\r
+}
\ No newline at end of file