JAL-535 interface for GUI state update methods that the AlignViewController can call
[jalview.git] / src / jalview / api / AlignViewControllerGuiI.java
diff --git a/src/jalview/api/AlignViewControllerGuiI.java b/src/jalview/api/AlignViewControllerGuiI.java
new file mode 100644 (file)
index 0000000..1d150af
--- /dev/null
@@ -0,0 +1,16 @@
+package jalview.api;
+/**
+ * Interface implemented by gui implementations managing a Jalview Alignment View
+ * @author jimp
+ *
+ */
+public interface AlignViewControllerGuiI
+{
+
+  /**
+   * display the given string in the GUI's status bar
+   * @param string
+   */
+  void setStatus(String string);
+
+}