603da98a204b1686906b3504f07b912b74ae7ebe
[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 }