JAL-2759 Refactor of hideInsertionsFor after review
[jalview.git] / src / jalview / datamodel / AlignmentI.java
index 084b80e..bdc48d0 100755 (executable)
@@ -580,6 +580,17 @@ public interface AlignmentI extends AnnotatedCollectionI
    */
   AlignedCodonFrame getMapping(SequenceI mapFrom, SequenceI mapTo);
 
+  /**
+   * Set the hidden columns collection on the alignment
+   * 
+   * @param cols
+   */
   public void setHiddenColumns(HiddenColumns cols);
 
+  /**
+   * Set the first sequence as representative and hide its insertions. Typically
+   * used when loading JPred files.
+   */
+  public void setupJPredAlignment();
+
 }