JAL-2629 adjust log parameter slightly and reduce granularity
[jalview.git] / src / jalview / api / AlignViewportI.java
index 6ebde3c..a35c2a4 100644 (file)
@@ -135,13 +135,6 @@ public interface AlignViewportI extends ViewStyleI
   AlignmentAnnotation getAlignmentConsensusAnnotation();
 
   /**
-   * get the container for alignment information content annotation
-   * 
-   * @return
-   */
-  AlignmentAnnotation getAlignmentInformationAnnotation();
-
-  /**
    * get the container for alignment gap annotation
    * 
    * @return
@@ -511,4 +504,29 @@ public interface AlignViewportI extends ViewStyleI
    */
   @Override
   void setProteinFontAsCdna(boolean b);
+
+  void setSequenceInformationHashes(List<ProfilesI> info);
+
+  List<ProfilesI> getSequenceInformationHashes();
+
+  ProfilesI getSequenceInformationHash(int index);
+
+  List<AlignmentAnnotation> getInformationAnnotations();
+
+  AlignmentAnnotation getInformationAnnotation(int index);
+
+  void setSequenceInformationHash(ProfilesI info, int index);
+
+  /**
+   * Initiates the information annotation for all uninitiated sequences.
+   */
+  void initInformation();
+
+  /**
+   * Updates all information annotations.
+   * 
+   * @param ap
+   */
+  void updateInformation(AlignmentViewPanel ap);
+
 }