JAL-3487 HTML label not wrapping
[jalview.git] / src / jalview / datamodel / AllColsCollection.java
index f3077fa..af3fffa 100644 (file)
@@ -27,9 +27,9 @@ import java.util.Iterator;
 
 public class AllColsCollection implements AlignmentColsCollectionI
 {
-  int start;
+  final int start;
 
-  int end;
+  final int end;
 
   HiddenColumns hidden;
 
@@ -67,10 +67,10 @@ public class AllColsCollection implements AlignmentColsCollectionI
   }
 
   /**
-   * return ALL columns, not just the truly visible ones
+   * Returns all columns, including any hidden in the alignment
    */
   @Override
-  public BitSet getOverviewBitSet()
+  public BitSet getShownBitSet()
   {
     if (bsVisible == null)
     {