JAL-1114 - refactor methods handling Vectors and Hashtables to Lists and Maps, and...
[jalview.git] / src / jalview / api / AlignViewportI.java
index 5189e70..ab9efb1 100644 (file)
@@ -4,11 +4,16 @@
 package jalview.api;
 
 import java.util.Hashtable;
+import java.util.Map;
 
 import jalview.datamodel.AlignmentAnnotation;
 import jalview.datamodel.AlignmentI;
+import jalview.datamodel.AnnotatedCollectionI;
 import jalview.datamodel.ColumnSelection;
+import jalview.datamodel.SequenceCollectionI;
+import jalview.datamodel.SequenceI;
 import jalview.schemes.ColourSchemeI;
+import jalview.schemes.RNAHelicesColour;
 
 /**
  * @author jimp
@@ -52,6 +57,11 @@ public interface AlignViewportI
   AlignmentAnnotation getAlignmentQualityAnnot();
 
   AlignmentAnnotation getAlignmentConservationAnnotation();
+  /**
+   * get the container for alignment consensus annotation
+   * @return
+   */
+  AlignmentAnnotation getAlignmentConsensusAnnotation();
 
   /**
    * Test to see if viewport is still open and active
@@ -69,4 +79,34 @@ public interface AlignViewportI
    * 
    */
   public int getConsPercGaps();
+
+  /**
+   * set the consensus result object for the viewport
+   * @param hconsensus
+   */
+  void setSequenceConsensusHash(Hashtable[] hconsensus);
+
+  /**
+   * 
+   * @return the alignment annotatino row for the structure consensus calculation
+   */
+  AlignmentAnnotation getAlignmentStrucConsensusAnnotation();
+
+  /**
+   * set the Rna structure consensus result object for the viewport
+   * @param hStrucConsensus 
+   */
+  void setRnaStructureConsensusHash(Hashtable[] hStrucConsensus);
+
+  /**
+   * set global colourscheme
+   * @param rhc
+   */
+  void setGlobalColourScheme(ColourSchemeI rhc);
+
+  Map<SequenceI, SequenceCollectionI> getHiddenRepSequences();
+
+  void setHiddenRepSequences(
+          Map<SequenceI, SequenceCollectionI> hiddenRepSequences);
+
 }