JAL-1746 return empty string rather than null in getStateInfo
[jalview.git] / src / jalview / api / AlignViewControllerGuiI.java
index 4010e8b..f768451 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -21,6 +21,7 @@
 package jalview.api;
 
 import jalview.commands.CommandI;
+import jalview.schemes.ColourSchemeI;
 
 /**
  * Interface implemented by gui implementations managing a Jalview Alignment
@@ -41,4 +42,9 @@ public interface AlignViewControllerGuiI
 
   void addHistoryItem(CommandI command);
 
+  void setShowSeqFeatures(boolean show);
+  
+  void setMenusForViewport();
+  
+  void changeColour(ColourSchemeI cs);
 }