JAL-1483 JAL-1104 method to pass operations for undo/redo buffer to GUI (needs to...
authorj.procter@dundee.ac.uk <jprocter@Jims-MacBook-Pro-2.local>
Fri, 8 Aug 2014 16:44:50 +0000 (17:44 +0100)
committerj.procter@dundee.ac.uk <jprocter@Jims-MacBook-Pro-2.local>
Fri, 8 Aug 2014 16:44:50 +0000 (17:44 +0100)
src/jalview/api/AlignViewControllerGuiI.java

index b9638e5..4010e8b 100644 (file)
@@ -20,6 +20,8 @@
  */
 package jalview.api;
 
+import jalview.commands.CommandI;
+
 /**
  * Interface implemented by gui implementations managing a Jalview Alignment
  * View
@@ -37,4 +39,6 @@ public interface AlignViewControllerGuiI
    */
   void setStatus(String string);
 
+  void addHistoryItem(CommandI command);
+
 }