JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / src / jalview / api / AlignmentColsCollectionI.java
index 70dda87..06b1675 100644 (file)
@@ -20,8 +20,6 @@
  */
 package jalview.api;
 
-import java.util.BitSet;
-
 public interface AlignmentColsCollectionI extends Iterable<Integer>
 {
   /**
@@ -39,20 +37,4 @@ public interface AlignmentColsCollectionI extends Iterable<Integer>
    * @return true if there is at least 1 hidden column
    */
   public boolean hasHidden();
-
-  /**
-   * Get the visible-column bitset, possibly containing hidden columns (which
-   * may or may not be hidden in the overview).
-   * 
-   * @return a BitSet
-   */
-  public BitSet getOverviewBitSet();
-
-  /**
-   * Get the hidden-column bitset, (which may or may not be hidden in the
-   * overview).
-   * 
-   * @return
-   */
-  BitSet getHiddenBitSet();
 }