JAL-2664 Updates following review
[jalview.git] / src / jalview / api / AlignmentColsCollectionI.java
1 package jalview.api;
2
3 public interface AlignmentColsCollectionI extends Iterable<Integer>
4 {
5   /**
6    * Answers if the column at the given position is hidden.
7    * 
8    * @param c
9    *          the column index to check
10    * @return true if the column at the position is hidden
11    */
12   public boolean isHidden(int c);
13
14   /**
15    * Answers if any column in this collection is hidden
16    * 
17    * @return true if there is at least 1 hidden column
18    */
19   public boolean hasHidden();
20 }