X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2FAlignViewControllerGuiI.java;h=4010e8be6286abfc7905ca80aa31eb1a8713c846;hb=497958b4e5217efaa3ddeece38f38c3a6e98cb96;hp=32fcd3e6e868e5e0952494ebe5646b36574cf8cc;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/api/AlignViewControllerGuiI.java b/src/jalview/api/AlignViewControllerGuiI.java index 32fcd3e..4010e8b 100644 --- a/src/jalview/api/AlignViewControllerGuiI.java +++ b/src/jalview/api/AlignViewControllerGuiI.java @@ -19,18 +19,26 @@ * 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); + }