JAL-1553 enhancement of column selection by annotation row to include the query filte...
[jalview.git] / src / jalview / gui / AlignViewport.java
index 29d936f..b8f575f 100644 (file)
@@ -140,7 +140,7 @@ public class AlignViewport extends AlignmentViewport implements
   Color textColour2 = Color.white;
   private boolean rightAlignIds = false;
 
-  private AnnotationColumnChooser currentAnnotationColumnSelectionState;
+  private AnnotationColumnChooser annotationColumnSelectionState;
   /**
    * Creates a new AlignViewport object.
    * 
@@ -1251,14 +1251,14 @@ public class AlignViewport extends AlignmentViewport implements
     this.rightAlignIds = rightAlignIds;
   }
 
-  public AnnotationColumnChooser getCurrentAnnotationColumnSelectionState()
+  public AnnotationColumnChooser getAnnotationColumnSelectionState()
   {
-    return currentAnnotationColumnSelectionState;
+    return annotationColumnSelectionState;
   }
 
-  public void setCurrentAnnotationColumnSelectionState(
+  public void setAnnotationColumnSelectionState(
           AnnotationColumnChooser currentAnnotationColumnSelectionState)
   {
-    this.currentAnnotationColumnSelectionState = currentAnnotationColumnSelectionState;
+    this.annotationColumnSelectionState = currentAnnotationColumnSelectionState;
   }
 }