From 13c8d5d6cc0abc6e36845c075a4042040522af44 Mon Sep 17 00:00:00 2001 From: "j.procter@dundee.ac.uk" Date: Fri, 8 Aug 2014 17:44:50 +0100 Subject: [PATCH] JAL-1483 JAL-1104 method to pass operations for undo/redo buffer to GUI (needs to be refactored to separate undo/redo controller class) --- src/jalview/api/AlignViewControllerGuiI.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jalview/api/AlignViewControllerGuiI.java b/src/jalview/api/AlignViewControllerGuiI.java index b9638e5..4010e8b 100644 --- a/src/jalview/api/AlignViewControllerGuiI.java +++ b/src/jalview/api/AlignViewControllerGuiI.java @@ -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); + } -- 1.7.10.2