Merge branch 'features/JAL-1605_html-svg-export' into develop
[jalview.git] / src / jalview / api / AlignViewControllerGuiI.java
index 32fcd3e..4010e8b 100644 (file)
  * The Jalview Authors are detailed in the 'AUTHORS' file.
  */
 package jalview.api;
+
+import jalview.commands.CommandI;
+
 /**
- * Interface implemented by gui implementations managing a Jalview Alignment View
+ * 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);
 
+  void addHistoryItem(CommandI command);
+
 }