JAL-1553 implementation of column selection by annotation and threshold queries
[jalview.git] / src / jalview / gui / AlignViewport.java
index 497dad4..10e14d1 100644 (file)
@@ -151,6 +151,7 @@ public class AlignViewport extends AlignmentViewport implements
 
   private boolean rightAlignIds = false;
 
+  private AnnotationColumnSelection currentAnnotationColumnSelectionState;
   /**
    * Creates a new AlignViewport object.
    * 
@@ -1318,4 +1319,15 @@ public class AlignViewport extends AlignmentViewport implements
   {
     this.rightAlignIds = rightAlignIds;
   }
+
+  public AnnotationColumnSelection getCurrentAnnotationColumnSelectionState()
+  {
+    return currentAnnotationColumnSelectionState;
+  }
+
+  public void setCurrentAnnotationColumnSelectionState(
+          AnnotationColumnSelection currentAnnotationColumnSelectionState)
+  {
+    this.currentAnnotationColumnSelectionState = currentAnnotationColumnSelectionState;
+  }
 }